We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b940da + 0254020 commit f64d92aCopy full SHA for f64d92a
.github/workflows/issue-pr-tag.yml
@@ -0,0 +1,30 @@
1
+name: "Issue/PR Tag"
2
+
3
+# Trigger workflow when issues or pull requests are opened/edited,
4
+# or when this workflow file is modified
5
+on:
6
+ issues:
7
+ types: [opened, edited]
8
+ pull_request:
9
10
+ push:
11
+ paths:
12
+ - .github/workflows/issue-pr-tag.yml
13
14
+permissions:
15
+ contents: read
16
17
+jobs:
18
+ notify:
19
+ uses: devops-actions/.github/.github/workflows/issue-pr-tag.yml@main
20
+ permissions:
21
22
+ issues: write
23
+ pull-requests: write
24
+ with:
25
+ org_name: ${{ vars.FIXED_ORG_NAME }}
26
+ tag_team: ${{ vars.TAG_TEAM }}
27
+ issue: ${{ github.event.issue.number }}
28
+ pr: ${{ github.event.pull_request.number }}
29
+ secrets:
30
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments