github-actions(deps): bump github/codeql-action from 3 to 4 #3
Workflow file for this run
This file contains hidden or 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: [pull_request_target, issues] | |
| jobs: | |
| greeting: | |
| if: ${{ (github.actor != 'AlterTobi') || (github.actor != 'dependabot[bot]') }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: 'Thanks for your report. I will have a look at it soon.' | |
| pr-message: 'Thank you for submitting. Please give me some time, as I may be busy at the moment.' |