forked from ethereum/EIPs
-
Notifications
You must be signed in to change notification settings - Fork 12
30 lines (28 loc) · 1.24 KB
/
greetings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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/).