Create devcontainer.json #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Greetings | |
on: | |
issues: | |
types: | |
- opened | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
greetings: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Comment (issue) | |
if: github.event_name == 'issues' | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
We kindly remind you to check out [EIP-1](https://eips.ethereum.org/EIPS/eip-1) for guidance. | |
If this issue was created as a “discussions-to” for an EIP or to discuss an idea for an EIP, please close it and create a thread at [Fellowship of Ethereum Magicians](https://ethereum-magicians.org/). | |
- name: Create Comment (pull request) | |
if: github.event_name == 'pull_request_target' | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
issue-number: ${{ github.event.number }} | |
body: | | |
We kindly remind you to check out [EIP-1](https://eips.ethereum.org/EIPS/eip-1) for guidance. | |
If this issue was created as a “discussions-to” for an EIP or to discuss an idea for an EIP, please close it and create a thread at [Fellowship of Ethereum Magicians](https://ethereum-magicians.org/). |