Skip to content

Commit e7e7a1d

Browse files
authored
chore(ci): Remove checking author in PRs (#2003)
1 parent 3efc838 commit e7e7a1d

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
88
99

10-
- [ ] I've read the contributing guidelines
10+
- [ ] I've read the contributing guidelines
11+
- [ ] I've added my name and email to the NOTICE file

.github/workflows/test.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v1.0.0
13-
- name: "Check that author is present in the NOTICE file"
14-
if: github.event_name == 'pull_request'
15-
run: |
16-
AUTHOR=$(git log -1 --format="%aE")
17-
if [ -z "$AUTHOR" ]; then
18-
printf "\Cannot perform NOTICE check: Commit does not include an email address.\n" &&
19-
exit 1;
20-
elif ! grep -q "$AUTHOR" NOTICE || false; then
21-
printf "\nAuthor '$AUTHOR' does not appear to be listed in the NOTICE file, yet.\n" &&
22-
printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md\n" &&
23-
exit 1;
24-
else
25-
printf "\nOK: Author is present in the NOTICE file.\n";
26-
fi
2713
- name: "Check that distribution files are unmodified"
2814
if: github.event_name == 'pull_request'
2915
run: |

0 commit comments

Comments
 (0)