chore(deps): bump actions/stale from 8 to 9 #104
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Greetings | |
on: [issues, pull_request_target] | |
jobs: | |
greeting: | |
name: 📝 Issue comment | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/first-interaction@v1 | |
with: | |
# Changed from secrets.GITHUB_TOKEN to see if the commit is verified | |
repo-token: ${{ secrets.ACCESS_TOKEN }} | |
issue-message: "Gidday @${{ github.actor }}, thank you for submitting your first issue!" | |
pr-message: "Gidday @${{ github.actor }}, thank you for submitting your first pull request!" | |
- uses: Code-Hex/[email protected] | |
with: | |
# Changed from secrets.GITHUB_TOKEN to see if the commit is verified | |
github-token: ${{ secrets.ACCESS_TOKEN }} | |
issue-labels: '["🥇 Good First Issue"]' | |
pr-labels: '["🥇 Good First PR"]' |