-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 981 Bytes
/
pull-request-label.yml
File metadata and controls
41 lines (35 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: PR - Label
on:
pull_request:
types: [labeled, unlabeled]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.event.label.name }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
actions: write
jobs:
test-robot-label:
name: Job
uses: ./.github/workflows/test-robot-label.yml
with:
label-test-robot-done: test-robot-done
label-test-robot-needed: test-robot-needed
secrets:
token: ${{ secrets.BOT_REPO_TOKEN }}
test-robot-check:
needs: test-robot-label
if: ${{ !cancelled() }}
name: Job
uses: ./.github/workflows/test-robot-check.yml
with:
label-test-robot-done: test-robot-done
label-test-robot-needed: test-robot-needed
secrets:
token: ${{ secrets.BOT_REPO_TOKEN }}
all-green:
needs: test-robot-check
if: ${{ !cancelled() }}
name: Job
uses: ./.github/workflows/all-green.yml