We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3929ad5 commit 236a598Copy full SHA for 236a598
.github/workflows/on_pr_opened.yaml
@@ -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
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