Skip to content
Open
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
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-mention-in-issue.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-mention-in-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ Call `add_comment` with your response. Be concise and actionable — no filler o
- `create_pull_request` — create a PR with your changes
- `create_issue` — create a new issue (e.g. to split off sub-tasks)

Unless instructred otherwise, if you do create an issue or a pull request, assign it to the user who requested the change that resulted in the creation of the issue or pull request.
Unless instructed otherwise, if you do create an issue or a pull request, assign it to the user who requested the change that resulted in the creation of the issue or pull request.

${{ inputs.additional-instructions }}
Loading