Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/sync-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ workflows:
description: "Codex belt conveyor - orchestrates belt worker execution and handles completion"

- source: .github/workflows/agents-autofix-dispatcher.yml
description: "Autofix dispatch bridge - listens for Gate repository_dispatch events and triggers the autofix loop"
description: "Autofix dispatch bridge - acknowledges legacy Gate repository_dispatch events; agents-81-gate-followups handles repair work"

- source: .github/workflows/agents-verifier.yml
description: "Verifier - validates agent work meets acceptance criteria"
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/agents-70-orchestrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,16 @@ jobs:
outputs:
should_run: ${{ steps.eligibility.outputs.should-run }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: workflow_dispatch,schedule
custom-predicate: >-
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/agents-auto-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,16 @@ jobs:
!contains(github.event.issue.labels.*.name, 'automated')

steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: opened,reopened,labeled
custom-predicate: >-
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/agents-auto-pilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,16 @@ jobs:
outputs:
proceed: ${{ steps.eligibility.outputs.should-run }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: workflow_dispatch,labeled,closed
custom-predicate: >-
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/agents-autofix-dispatcher.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Agents Autofix Dispatch

# Compatibility bridge for legacy Gate repository_dispatch events. Gate-driven
# repair routing now lives in agents-81-gate-followups.yml via workflow_run, so
# this workflow only validates and logs the old dispatch payload.

on:
repository_dispatch:
types:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/agents-bot-comment-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,16 @@ jobs:
skip_reason: ${{ steps.resolve.outputs.skip_reason }}
workflow_app_auth_mode: ${{ steps.workflow-app-creds.outputs.workflow_app_auth_mode }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: workflow_dispatch,labeled,completed
custom-predicate: >-
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/agents-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-labels: >-
agent:auto,agent:codex,agent:claude,agent:copilot,
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/agents-moderate-connector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ jobs:
outputs:
moderated: ${{ steps.evaluate.outputs.delete || 'false' }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: created
custom-predicate: >-
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,16 @@ jobs:
same_repo: ${{ steps.context.outputs.same_repo }}
caller_actor: ${{ steps.context.outputs.caller_actor }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: completed,labeled
custom-predicate: >-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,16 @@ jobs:
debug: ${{ steps.resolve.outputs.debug }}
should_run: ${{ steps.eligibility.outputs.should-run || 'false' }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: >-
workflow_dispatch,created,opened,synchronize,reopened,edited,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,16 @@ jobs:
!contains(github.event.issue.labels.*.name, 'automated')

steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: opened,reopened,labeled
custom-predicate: >-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,16 @@ jobs:
outputs:
proceed: ${{ steps.eligibility.outputs.should-run }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: workflow_dispatch,labeled,closed
custom-predicate: >-
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Agents Autofix Dispatch

# Compatibility bridge for legacy Gate repository_dispatch events. Gate-driven
# repair routing now lives in agents-81-gate-followups.yml via workflow_run, so
# this workflow only validates and logs the old dispatch payload.

on:
repository_dispatch:
types:
Expand Down
8 changes: 7 additions & 1 deletion templates/consumer-repo/.github/workflows/agents-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-labels: >-
agent:auto,agent:codex,agent:claude,agent:copilot,
Expand Down
8 changes: 7 additions & 1 deletion templates/consumer-repo/.github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,16 @@ jobs:
same_repo: ${{ steps.context.outputs.same_repo }}
caller_actor: ${{ steps.context.outputs.caller_actor }}
steps:
- name: Checkout eligibility action
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
sparse-checkout: .github/actions/agent-event-eligibility
sparse-checkout-cone-mode: false

# Escape hatch: set mode: warning if false-negative skips appear post-merge.
- name: Check event eligibility
id: eligibility
uses: stranske/Workflows/.github/actions/agent-event-eligibility@main
uses: ./.github/actions/agent-event-eligibility
with:
expected-actions: completed,labeled
custom-predicate: >-
Expand Down
Loading