Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
8 changes: 4 additions & 4 deletions .github/workflows/agentics-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ on:
description: 'Optional maintenance operation to run'
required: false
type: choice
default: ''
default: 'none'
options:
- ''
- 'none'
- 'disable'
- 'enable'
- 'update'
Expand All @@ -54,7 +54,7 @@ permissions: {}

jobs:
close-expired-entities:
if: ${{ !github.event.repository.fork && (github.event_name != 'workflow_dispatch' || github.event.inputs.operation == '') }}
if: ${{ !github.event.repository.fork && (github.event_name != 'workflow_dispatch' || github.event.inputs.operation == 'none') }}
runs-on: ubuntu-slim
permissions:
discussions: write
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
await main();

run_operation:
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.operation != '' && !github.event.repository.fork }}
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.operation != 'none' && !github.event.repository.fork }}
runs-on: ubuntu-slim
permissions:
actions: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-aw-bug-hunter.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/gh-aw-bug-hunter.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ steps:
run: eval "$SETUP_COMMANDS"
---

Find a single reproducible, user-impacting bug in the repository that can be covered by a minimal failing test.
Find a single reproducible, user-impacting bug in the repository that can be covered by a minimal failing test. Not a number field accepting "ABC", but a real and impactful bug.

**The bar is high: you must actually reproduce the bug before filing.** Most runs should end with `noop` — that means the codebase is healthy.

Expand Down
61 changes: 60 additions & 1 deletion .github/workflows/gh-aw-code-duplication-detector.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .github/workflows/gh-aw-code-duplication-detector.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ imports:
- gh-aw-fragments/pick-three-keep-many.md
- gh-aw-fragments/scheduled-audit.md
- gh-aw-fragments/network-ecosystems.md
- gh-aw-fragments/code-quality-audit.md
engine:
id: copilot
model: ${{ inputs.model }}
Expand Down Expand Up @@ -55,6 +56,11 @@ on:
type: string
required: false
default: ""
severity-threshold:
description: "Minimum severity to include in the report. 'high' = only duplications causing active maintenance problems. 'medium' (default) = also include clear consolidation opportunities. 'low' = also include minor near-duplicates."
type: string
required: false
default: "medium"
title-prefix:
description: "Title prefix for created issues (e.g. '[refactor]')"
type: string
Expand Down
Loading
Loading