Build(deps): Bump tar from 7.4.3 to 7.5.3 #102
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: Tag rajbos on new issues and PRs | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| tag-rajbos: | |
| # Only run on the main repository, not on forks | |
| if: github.repository == 'xebia/github-copilot-premium-reqs-usage' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Tag rajbos on new issue or PR | |
| uses: devops-actions/issue-comment-tag@v0.1.8 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| team: rajbos | |
| issue: ${{ github.event.issue.number }} | |
| pr: ${{ github.event.pull_request.number }} | |
| owner: ${{ github.repository_owner }} | |
| repo: ${{ github.repository }} |