chore: github actions update(deps): bump the version-updates group in /.github/workflows with 2 updates #1969
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, issues] | |
| jobs: | |
| greeting: | |
| name: Greet First Time Contributors | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Greet First Time Contributors | |
| uses: actions/first-interaction@v3 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| issue_message: 'Thank you for opening your first issue. We will respond as soon as we can. Thank you for being part of our community' | |
| pr_message: 'Thank you for being part of our community and opening a pull request. We will work with you as soon as possible to integrate your contribution.' |