Skip to content

Commit

Permalink
Create new extensions github workflow (#5186)
Browse files Browse the repository at this point in the history
* Create new extensions github workflow

Automatically add any issues tagged with 'extensions' label to the PatternFly extensions github project

* Update extensions.yml
  • Loading branch information
nicolethoen committed Oct 24, 2022
1 parent 3db0726 commit 8750b57
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/extensions.yml
@@ -0,0 +1,17 @@
name: Add relevant issues to extensions project board

on:
issues:
types:
- labeled

jobs:
add-to-extensions:
if: github.event.label.name == 'extension'
name: Add issue to extensions board
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.3.0
with:
project-url: https://github.com/orgs/patternfly/projects/12
github-token: ${{ secrets.PF_ISSUES_PROJECT_SECRET }}

0 comments on commit 8750b57

Please sign in to comment.