Skip to content

Commit

Permalink
Create project.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Jul 3, 2024
1 parent b4bdab4 commit 9b22333
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Project automations
on:
pull_request_target:
types:
- opened

env:
review: "In Review"

jobs:
pr_to_add_review:
name: pr_opened
runs-on: ubuntu-latest
steps:
- name: Move PR to ${{ env.review }}
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ secrets.ADD_ISSUES_TOKEN }}
organization: kuadrant
project_id: 16
resource_node_id: ${{ github.event.pull_request.node_id }}
status_value: ${{ env.review }} # Target status
move_related_issues: true

0 comments on commit 9b22333

Please sign in to comment.