Taylor Fox Dahlin
commited on
Removes first-interaction action from PRs
Browse filesI think this has always been broken, because of how github token permissions work. No sense in showing a PR failure just because of a known problem with github actions.
.github/workflows/greetings.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
name: Greetings
|
2 |
|
3 |
-
on: [
|
4 |
|
5 |
jobs:
|
6 |
greeting:
|
@@ -10,4 +10,3 @@ jobs:
|
|
10 |
with:
|
11 |
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
12 |
issue-message: 'Thank you for contributing to PyTube. Please remember to reference [Contributing.md](https://github.com/nficano/pytube/blob/master/Contributing.md)'
|
13 |
-
pr-message: 'Thank you for contributing to PyTube. Please remember to reference [Contributing.md](https://github.com/nficano/pytube/blob/master/Contributing.md)'
|
|
|
1 |
name: Greetings
|
2 |
|
3 |
+
on: [issues]
|
4 |
|
5 |
jobs:
|
6 |
greeting:
|
|
|
10 |
with:
|
11 |
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
12 |
issue-message: 'Thank you for contributing to PyTube. Please remember to reference [Contributing.md](https://github.com/nficano/pytube/blob/master/Contributing.md)'
|
|