Skip to content

Commit

Permalink
greetings: change token name in workflow
Browse files Browse the repository at this point in the history
This is done to prevent
Failed to add secret. Secret names must not start with GITHUB_.
Also made to workflow to get triggered on commit ( this is for temp purpose ).
  • Loading branch information
ksauraj committed Jan 28, 2024
1 parent 29b062f commit a7b5b52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Greetings

on: [pull_request, issues]
on: [pull_request, issues, push]

jobs:
greeting:
Expand All @@ -11,6 +11,6 @@ jobs:
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.TOKEN }}
issue-message: 'Hey, @${{ github.actor }} welcome to JEE Counsellor repository.🎊 Thank you so much for taking the time to point this out.🙌'
pr-message: 'Hey, @${{ github.actor }} welcome to JEE Counsellor repository.🎊 Thank you so much for taking the effort to make our project better! 🙌 Keep making such awesome contributions!'
pr-message: 'Hey, @${{ github.actor }} welcome to JEE Counsellor repository.🎊 Thank you so much for taking the effort to make our project better! 🙌 Keep making such awesome contributions!'

0 comments on commit a7b5b52

Please sign in to comment.