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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
# Copyright (C) Project Tick
# SPDX-License-Identifier: MIT
#
# ╔══════════════════════════════════════════════════════════════════╗
# ║ Project Tick — Scheduled Maintenance Orchestrator ║
# ║ ║
# ║ Consolidates ALL scheduled jobs into one workflow with a ║
# ║ matrix dispatch. Each cron entry triggers its own subset. ║
# ╚══════════════════════════════════════════════════════════════════╝
name: "Scheduled CI"
on:
schedule:
# ── Daily (03:00 UTC) ─────────────────────────────────────────
- cron: "0 3 * * *" # [0] daily: stale, coverity, docker
# ── Weekly Sunday (04:00 UTC) ─────────────────────────────────
- cron: "0 4 * * 0" # [1] weekly-sun: link-check, scorecard, flake-update, codeql
# ── Weekly Wednesday (14:00 UTC) ──────────────────────────────
- cron: "0 14 * * 3" # [2] weekly-wed: flawfinder
# ── Weekly Thursday (02:00 UTC) ───────────────────────────────
- cron: "0 2 * * 4" # [3] weekly-thu: semgrep
workflow_dispatch:
inputs:
schedule-group:
description: "Which schedule group to run"
type: choice
options: [daily, weekly-sun, weekly-wed, weekly-thu, all]
default: all
permissions:
contents: read
jobs:
# ── Gate: resolve which schedule group to run ───────────────────
gate:
name: "Resolve Schedule Group"
runs-on: ubuntu-latest
outputs:
group: ${{ steps.resolve.outputs.group }}
steps:
- name: Resolve schedule group
id: resolve
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
GROUP="${{ github.event.inputs.schedule-group }}"
elif [[ "${{ github.event.schedule }}" == "0 3 * * *" ]]; then
GROUP="daily"
elif [[ "${{ github.event.schedule }}" == "0 4 * * 0" ]]; then
GROUP="weekly-sun"
elif [[ "${{ github.event.schedule }}" == "0 14 * * 3" ]]; then
GROUP="weekly-wed"
elif [[ "${{ github.event.schedule }}" == "0 2 * * 4" ]]; then
GROUP="weekly-thu"
else
GROUP="all"
fi
echo "group=$GROUP" >> "$GITHUB_OUTPUT"
echo "### Schedule Group: \`$GROUP\`" >> "$GITHUB_STEP_SUMMARY"
# ╔════════════════════════════════════════════════════════════════╗
# ║ Daily Jobs ║
# ╚════════════════════════════════════════════════════════════════╝
stale:
name: "Stale Issues & PRs"
needs: gate
if: contains(fromJSON('["daily","all"]'), needs.gate.outputs.group)
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Harden runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- name: Mark stale
uses: actions/stale@v10
with:
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
activity in 90 days. It will be closed in 10 days if no further activity occurs.
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
activity in 30 days. Please rebase or update to keep it alive.
days-before-stale: 90
days-before-pr-stale: 30
days-before-close: 10
days-before-pr-close: -1
exempt-issue-labels: "pinned,security"
exempt-pr-labels: "pinned,security,status: blocking"
stale-issue-label: "state: stale"
stale-pr-label: "state: stale"
docker-images:
name: "Docker Image Rebuild"
needs: gate
if: contains(fromJSON('["daily","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/images4docker-build.yml
permissions:
contents: read
packages: write
secrets: inherit
mnv-coverity:
name: "MNV Coverity Scan"
needs: gate
if: contains(fromJSON('["daily","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/mnv-coverity.yml
secrets: inherit
# ╔════════════════════════════════════════════════════════════════╗
# ║ Weekly Sunday Jobs ║
# ╚════════════════════════════════════════════════════════════════╝
mnv-link-check:
name: "MNV Link Check"
needs: gate
if: contains(fromJSON('["weekly-sun","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/mnv-link-check.yml
secrets: inherit
scorecard:
name: "OpenSSF Scorecard"
needs: gate
if: contains(fromJSON('["weekly-sun","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/repo-scorecards.yml
permissions:
contents: read
security-events: write
id-token: write
actions: read
issues: read
pull-requests: read
checks: read
secrets: inherit
meshmc-flake-update:
name: "MeshMC Nix Flake Update"
needs: gate
if: >-
contains(fromJSON('["weekly-sun","all"]'), needs.gate.outputs.group) &&
github.repository_owner == 'Project-Tick'
uses: ./.github/workflows/meshmc-flake-update.yml
permissions:
contents: write
pull-requests: write
secrets: inherit
mnv-codeql:
name: "MNV CodeQL"
needs: gate
if: contains(fromJSON('["weekly-sun","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/mnv-codeql.yml
permissions:
contents: read
security-events: write
secrets: inherit
neozip-codeql:
name: "NeoZip CodeQL"
needs: gate
if: contains(fromJSON('["weekly-sun","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/neozip-codeql.yml
permissions:
contents: read
security-events: write
secrets: inherit
# ╔════════════════════════════════════════════════════════════════╗
# ║ Weekly Wednesday Jobs ║
# ╚════════════════════════════════════════════════════════════════╝
json4cpp-flawfinder:
name: "JSON4CPP Flawfinder"
needs: gate
if: contains(fromJSON('["weekly-wed","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/json4cpp-flawfinder.yml
permissions:
contents: read
security-events: write
actions: read
secrets: inherit
# ╔════════════════════════════════════════════════════════════════╗
# ║ Weekly Thursday Jobs ║
# ╚════════════════════════════════════════════════════════════════╝
json4cpp-semgrep:
name: "JSON4CPP Semgrep"
needs: gate
if: contains(fromJSON('["weekly-thu","all"]'), needs.gate.outputs.group)
uses: ./.github/workflows/json4cpp-semgrep.yml
permissions:
contents: read
security-events: write
actions: read
secrets: inherit
# ╔════════════════════════════════════════════════════════════════╗
# ║ Schedule Verdict ║
# ╚════════════════════════════════════════════════════════════════╝
verdict:
name: "Schedule Verdict"
if: always()
needs:
- gate
- stale
- docker-images
- mnv-coverity
- mnv-link-check
- scorecard
- meshmc-flake-update
- mnv-codeql
- neozip-codeql
- json4cpp-flawfinder
- json4cpp-semgrep
runs-on: ubuntu-latest
steps:
- name: Report
run: |
set -euo pipefail
{
echo "## Scheduled CI Report — ${{ needs.gate.outputs.group }}"
echo ""
echo "| Job | Result |"
echo "|-----|--------|"
} >> "$GITHUB_STEP_SUMMARY"
FAILED=false
report() {
local name="$1" result="$2" icon="⬜"
case "$result" in
success) icon="✅" ;; failure) icon="❌"; FAILED=true ;;
cancelled) icon="⏹️" ;; skipped) icon="⏭️" ;;
esac
echo "| $name | $icon $result |" >> "$GITHUB_STEP_SUMMARY"
}
report "Stale" "${{ needs.stale.result }}"
report "Docker Images" "${{ needs.docker-images.result }}"
report "MNV Coverity" "${{ needs.mnv-coverity.result }}"
report "MNV Link Check" "${{ needs.mnv-link-check.result }}"
report "Scorecard" "${{ needs.scorecard.result }}"
report "Flake Update" "${{ needs.meshmc-flake-update.result }}"
report "MNV CodeQL" "${{ needs.mnv-codeql.result }}"
report "NeoZip CodeQL" "${{ needs.neozip-codeql.result }}"
report "Flawfinder" "${{ needs.json4cpp-flawfinder.result }}"
report "Semgrep" "${{ needs.json4cpp-semgrep.result }}"
if [[ "$FAILED" == "true" ]]; then
echo "" >> "$GITHUB_STEP_SUMMARY"
echo "**FAILED** — check individual jobs above." >> "$GITHUB_STEP_SUMMARY"
exit 1
fi
|