Skip to content

Commit 024c3af

Browse files
authored
Create workflow for extensions issues (#8281)
* Create workflow for extensions issues Whenever a patternfly-react issue is tagged with the 'extensions' label, it will automatically get added to the 'PatternFly Extensions' project board * change label name
1 parent 1a114c6 commit 024c3af

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/extensions.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Add relevant issues to extensions project board
2+
3+
on:
4+
issues:
5+
types:
6+
- labeled
7+
8+
jobs:
9+
add-to-extensions:
10+
if: github.event.label.name == 'extension'
11+
name: Add issue to extensions board
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/[email protected]
15+
with:
16+
project-url: https://github.com/orgs/patternfly/projects/12
17+
github-token: ${{ secrets.PF_ISSUES_PROJECT_SECRET }}

0 commit comments

Comments
 (0)