Skip to content

Commit cecba73

Browse files
authored
chore(): automatically label new issues with post-FF label (#921)
1 parent d4c7b6b commit cecba73

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/add-to-project.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,15 @@ jobs:
1010
with:
1111
project_id: 2
1212
secrets: inherit
13+
14+
# add post-FF label to every new issue, to track issues discovered after FF
15+
# This is temporary and it will be removed after the release
16+
add-post-ff-label:
17+
runs-on: ubuntu-latest
18+
permissions:
19+
issues: write
20+
steps:
21+
- run: |
22+
gh issue --repo ${{github.repository}} edit ${{github.event.issue.number}} --add-label "post-FF"
23+
env:
24+
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)