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
8 changes: 4 additions & 4 deletions .github/workflows/issue-triage-agent.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/issue-triage-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tools:
toolsets: [issues, labels]
safe-outputs:
add-labels:
allowed: [bug, feature, enhancement, documentation, question, help-wanted, good-first-issue]
allowed: [bug, feature, enhancement, documentation, question, help-wanted, good-first-issue, community]
add-comment: {}
imports:
- shared/reporting.md
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/smoke-gemini.lock.yml

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

15 changes: 11 additions & 4 deletions .github/workflows/smoke-gemini.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,18 @@ timeout-minutes: 10

## Output

Add a **very brief** comment (max 5-10 lines) to the current pull request with:
- ✅ or ❌ for each test result
- Overall status: PASS or FAIL
1. **Always create an issue** with a summary of the smoke test run (use `create_issue`):
- Title: "Smoke Test: Gemini - ${{ github.run_id }}"
- Body should include:
- ✅ or ❌ for each test result
- Overall status: PASS or FAIL
- Run URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

If all tests pass, use the `add_labels` safe-output tool to add the label `smoke-gemini` to the pull request.
2. **Only if the `pull-request-number` is set in the GitHub context above** (i.e., `{{#if __GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER__}}` is truthy): Use the `add_comment` tool to add a **very brief** comment (max 5-10 lines) to the triggering pull request (omit the `item_number` parameter to auto-target the triggering PR) with:
- ✅ or ❌ for each test result
- Overall status: PASS or FAIL

3. **Only if all tests pass AND the `pull-request-number` is set in the GitHub context above**: Use the `add_labels` safe-output tool to add the label `smoke-gemini` to the pull request (omit the `item_number` parameter to auto-target the triggering PR).

**Important**: If no action is needed after completing your analysis, you **MUST** call the `noop` safe-output tool with a brief explanation. Failing to call any safe-output tool is the most common cause of safe-output workflow failures.

Expand Down