-
Notifications
You must be signed in to change notification settings - Fork 124
33 lines (31 loc) · 1.4 KB
/
check-lables.yml
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
# File is copy-pasted from Integritee worker:
# https://github.com/integritee-network/worker/blob/1a58d6a625fa76935902f16c798efa453bcef9a4/.github/workflows/label-checker.yml
name: Check labels
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize, ready_for_review]
jobs:
check_for_matching_labels:
runs-on: ubuntu-latest
if: github.base_ref == 'master' && github.event.pull_request.draft == false
steps:
- name: E Label check
env:
enforced_labels: "E0-silent,E1-breaksnothing,E2-breaksapi"
run: |
MATCH=$(jq -cn '${{ toJSON(github.event.pull_request.labels.*.name) }} as $USER_LABELS |
${{ toJSON(env.enforced_labels) }} | split(",") as $LABELS |
$USER_LABELS - ($USER_LABELS - $LABELS)')
if [[ "$MATCH" == '[]' ]]; then
exit 1
fi
- name: F Label check
env:
enforced_labels: "F0-miscellaneous,F1-security,F2-bug,F3-test,F4-documentation,F5-refactor,F6-optimization,F7-enhancement,F8-newfeature,F9-dependencies"
run: |
MATCH=$(jq -cn '${{ toJSON(github.event.pull_request.labels.*.name) }} as $USER_LABELS |
${{ toJSON(env.enforced_labels) }} | split(",") as $LABELS |
$USER_LABELS - ($USER_LABELS - $LABELS)')
if [[ "$MATCH" == '[]' ]]; then
exit 1
fi