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
42
43
44
45
46
47
name: Process Labels
# Fail the build when persistent artifacts embed implementation-process labels
# (bead IDs, PR/issue numbers, release-tagged claims). A dedicated workflow is
# needed because lint.yml ignores docs/** and **.md, so a docs-only change
# would otherwise never be swept.
on:
push:
branches:
paths:
- 'src/**'
- 'src-python/**'
- 'mrrc/**'
- 'tests/**'
- 'docs/**'
- '.github/**'
- 'README.md'
- 'scripts/lint_process_labels.py'
pull_request:
branches:
paths:
- 'src/**'
- 'src-python/**'
- 'mrrc/**'
- 'tests/**'
- 'docs/**'
- '.github/**'
- 'README.md'
- 'scripts/lint_process_labels.py'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
process-labels:
name: process-label lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6.0.2
- name: Lint for process labels
run: python3 scripts/lint_process_labels.py