Taylor Fox Dahlin commited on
Commit
a238c48
·
unverified ·
1 Parent(s): 14350d3

Removes first-interaction action from PRs

Browse files

I 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.

Files changed (1) hide show
  1. .github/workflows/greetings.yml +1 -2
.github/workflows/greetings.yml CHANGED
@@ -1,6 +1,6 @@
1
  name: Greetings
2
 
3
- on: [pull_request, issues]
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)'