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 4a52f26 commit 42f40d0Copy full SHA for 42f40d0
.github/workflows/admin.yml
@@ -0,0 +1,36 @@
1
+name: Admin
2
+
3
+on:
4
+ create:
5
+ pull_request:
6
+ types:
7
+ - opened
8
+ branches:
9
+ - 'release/**'
10
+ push:
11
12
+ - "release/**"
13
14
+jobs:
15
+ update-labels:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v3
20
21
+ - name: Update issue status labels
22
+ uses: snowplow-incubator/labels-helper-action@v1
23
+ env:
24
+ ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
26
+ link-pr-issue:
27
28
+ if: github.event_name == 'pull_request'
29
30
31
32
33
+ - name: Match the issue to the PR
34
+ uses: snowplow-incubator/pull-request-helper-action@v1
35
36
0 commit comments