Skip to content

Commit 7d54bfa

Browse files
authored
Merge pull request #26 from devops-actions/copilot/fix-25
Add GitHub Actions workflow to tag @rajbos on new issues and PRs
2 parents f6a6c15 + c5871d9 commit 7d54bfa

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/tag-rajbos.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Tag rajbos on new issues and PRs
3+
4+
on:
5+
issues:
6+
types: [opened]
7+
pull_request:
8+
types: [opened]
9+
10+
jobs:
11+
tag-rajbos:
12+
# Only run on the main repository, not on forks
13+
if: github.repository == 'devops-actions/github-copilot-premium-reqs-usage'
14+
runs-on: ubuntu-latest
15+
16+
permissions:
17+
issues: write
18+
pull-requests: write
19+
20+
steps:
21+
- name: Tag rajbos on new issue or PR
22+
uses: devops-actions/issue-comment-tag@v1
23+
with:
24+
github-token: ${{ secrets.GITHUB_TOKEN }}
25+
username: rajbos

0 commit comments

Comments
 (0)