Skip to content

Commit f1f9ecf

Browse files
authored
Add flags project board workflow (#259)
1 parent 9db1b7e commit f1f9ecf

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This workflow is used to call the flags-project-board workflow when a pull request is opened, ready for review, review requested, synchronized, converted to draft, or reopened.
2+
# It is used to update the feature flags project board with the pull request information.
3+
4+
name: Call Feature Flags Project Workflow
5+
6+
on:
7+
pull_request:
8+
types: [opened, ready_for_review, review_requested, synchronize, converted_to_draft, reopened]
9+
10+
jobs:
11+
call-flags-project:
12+
uses: PostHog/.github/.github/workflows/flags-project-board.yml@main
13+
with:
14+
pr_number: ${{ github.event.pull_request.number }}
15+
pr_node_id: ${{ github.event.pull_request.node_id }}
16+
is_draft: ${{ github.event.pull_request.draft }}
17+
secrets: inherit

0 commit comments

Comments
 (0)