Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"version": "v8",
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
},
"github/gh-aw/actions/setup@v0.45.4": {
"github/gh-aw/actions/setup@v0.58.0": {
"repo": "github/gh-aw/actions/setup",
"version": "v0.45.4",
"sha": "ac090214a48a1938f7abafe132460b66752261af"
"version": "v0.58.0",
"sha": "cb7966564184443e601bd6135d5fbb534300070e"
}
}
}
720 changes: 429 additions & 291 deletions .github/workflows/devops-health-check.lock.yml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .github/workflows/devops-health-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
# Don't run scheduled triggers on forked repositories — forks lack the
# secrets and context required, and scheduled runs would consume the
# fork owner's minutes.
if: "!(github.event_name == 'schedule' && github.event.repository.fork)"
if: ${{ !(github.event_name == 'schedule' && github.event.repository.fork) }}

permissions:
contents: read
Expand Down Expand Up @@ -44,7 +44,7 @@ safe-outputs:
dispatch-workflow:
workflows:
- devops-health-investigate
max: 2 # Workaround for https://github.com/github/gh-aw/issues/20187 — raise when fixed
max: 5

network:
allowed:
Expand Down
671 changes: 398 additions & 273 deletions .github/workflows/devops-health-groom.lock.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/workflows/devops-health-groom.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
# Don't run scheduled triggers on forked repositories — forks lack the
# secrets and context required, and scheduled runs would consume the
# fork owner's minutes.
if: "!(github.event_name == 'schedule' && github.event.repository.fork)"
if: ${{ !(github.event_name == 'schedule' && github.event.repository.fork) }}

permissions:
contents: read
Expand Down
627 changes: 353 additions & 274 deletions .github/workflows/devops-health-investigate.lock.yml

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions .github/workflows/devops-health-investigate.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ on:
description: "Unique ID linking this investigation to the health check run"
required: true

# NOTE: The workflow-level group correctly discriminates by finding_id, but the
# compiler-generated agent job-level group does not include finding_id, so concurrent
# investigation runs share a group and cancel each other. Dispatches are capped at 2 as
# a workaround. See https://github.com/github/gh-aw/issues/20187
concurrency:
group: gh-aw-${{ github.workflow }}-${{ inputs.finding_id }}

Expand Down
Loading