Skip to content

Create devcontainer.json #12

Create devcontainer.json

Create devcontainer.json #12

Workflow file for this run

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/).