Skip to content

Commit 236a598

Browse files
authored
Create GH workflow running on PR opened (#49)
1 parent 3929ad5 commit 236a598

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Add PR to Smackore project board, if the author is from outside Membrane Team
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
jobs:
7+
maybe_add_to_project_board:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout membrane_core
11+
uses: actions/checkout@v3
12+
with:
13+
repository: membraneframework/membrane_core
14+
- name: Puts PR in "New PRs by community" column in the Smackore project, if the author is from outside Membrane Team
15+
uses: ./.github/actions/add_pr_to_smackore_board
16+
with:
17+
GITHUB_TOKEN: ${{ secrets.MEMBRANEFRAMEWORKADMIN_TOKEN }}
18+
AUTHOR_LOGIN: ${{ github.event.pull_request.user.login }}
19+
PR_URL: ${{ github.event.pull_request.html_url }}

0 commit comments

Comments
 (0)