Skip to content

Commit

Permalink
Add workflow that adds PRs to GH project with In Progress status
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Jan 2, 2024
1 parent 0c94a42 commit db1499b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update GitHub project

on:
pull_request:
types:
- opened

jobs:
update-project:
name: Add PR to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
id: add-to-project
with:
project-url: https://github.com/orgs/zowe/projects/21
github-token: ${{ secrets.ZOWE_ROBOT_TOKEN }}

- uses: titoportas/[email protected]
with:
project-url: https://github.com/orgs/zowe/projects/21
github-token: ${{ secrets.ZOWE_ROBOT_TOKEN }}
item-id: ${{ steps.add-to-project.outputs.itemId }}
field-keys: Status
field-values: In Progress

0 comments on commit db1499b

Please sign in to comment.