Skip to content

Commit bb843d9

Browse files
committed
chore(ci): disable problematic workflows temporarily
Disabled workflows that reference non-existent packages/features: - capability_tests.yml: references non-existent 'wrt' package - deploy-verification.yml: depends on KANI (already disabled) - status-dashboard.yml: depends on disabled KANI workflows Active workflows: ci.yml, pr-diagnostics.yml, publish.yml, security-audit.yml
1 parent 91f1642 commit bb843d9

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed
File renamed without changes.
File renamed without changes.

.github/workflows/status-dashboard.yml renamed to .github/workflows/status-dashboard.yml.disabled

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: '0 * * * *'
77
workflow_dispatch:
88
workflow_run:
9-
workflows: ["KANI Formal Verification", "Rust CI", "Deploy Verification Artifacts"]
9+
workflows: ["Rust CI", "Security Audit and Analysis"]
1010
types: [completed]
1111

1212
permissions:
@@ -35,23 +35,17 @@ jobs:
3535
# Fetch recent workflow runs
3636
echo "Fetching workflow run data..."
3737

38-
# Get KANI verification runs
39-
curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
40-
-H "Accept: application/vnd.github.v3+json" \
41-
"https://api.github.com/repos/${{ github.repository }}/actions/workflows/kani-regression.yml/runs?per_page=10" \
42-
> kani-runs.json
43-
4438
# Get CI runs
4539
curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
4640
-H "Accept: application/vnd.github.v3+json" \
4741
"https://api.github.com/repos/${{ github.repository }}/actions/workflows/ci.yml/runs?per_page=10" \
4842
> ci-runs.json
49-
50-
# Get deployment runs
43+
44+
# Get security audit runs
5145
curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
5246
-H "Accept: application/vnd.github.v3+json" \
53-
"https://api.github.com/repos/${{ github.repository }}/actions/workflows/deploy-verification.yml/runs?per_page=10" \
54-
> deploy-runs.json
47+
"https://api.github.com/repos/${{ github.repository }}/actions/workflows/security-audit.yml/runs?per_page=10" \
48+
> security-runs.json
5549

5650
- name: Generate dashboard HTML
5751
run: |

0 commit comments

Comments
 (0)