Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0c9297a
Extract Aspire.TestTools shared library
radical Apr 3, 2026
df03018
Add CreateFailingTestIssue tool
radical Apr 3, 2026
47776c6
Refactor DownloadFailingJobLogs and GenerateTestSummary to use Aspire…
radical Apr 3, 2026
f59187c
Rename and update failing-test issue template
radical Apr 3, 2026
eb4e871
Add /create-issue workflow for failing-test triage
radical Apr 3, 2026
646ec89
Add tests for failing-test tooling
radical Apr 3, 2026
044d8a9
Update ci-test-failures skill docs and project metadata
radical Apr 3, 2026
3881f77
Address review feedback: use --output flag and CreateTempSubdirectory
radical Apr 3, 2026
2c00279
Post comment on failure for all /create-issue error paths
radical Apr 3, 2026
e70114c
Merge remote-tracking branch 'origin/main' into failing-test-issues
radical Apr 3, 2026
9f17815
Merge remote-tracking branch 'origin/main' into failing-test-issues
radical Apr 3, 2026
750de0c
Make error details collapsible when over 30 lines
radical Apr 3, 2026
33564fe
/create-issue: show failures on no-args, add /disable-test hint on su…
radical Apr 4, 2026
76678b2
Address PR feedback: process lifecycle, zip validation, indentation
radical Apr 4, 2026
f7ef471
Move permission check before command parsing; harden workflow
radical Apr 4, 2026
73ec2a9
Merge remote-tracking branch 'origin/main' into failing-test-issues
radical Apr 6, 2026
a6ba528
Merge branch 'main' into failing-test-issues
radical Apr 7, 2026
3c0b0d1
Prevent GenerateTestSummary test from writing to job summary
radical Apr 6, 2026
90fd804
Address PR review feedback from JamesNK
radical Apr 7, 2026
d94c961
Replace pr-docs-hook with gh aw agentic workflow (#15916)
IEvangelist Apr 7, 2026
b8c2ddd
Fix path traversal in ValidateZipEntries zip-slip check
radical Apr 7, 2026
614a5fb
Merge branch 'main' into failing-test-issues
radical Apr 7, 2026
9413a2c
Merge branch 'main' into failing-test-issues
radical Apr 7, 2026
fd28068
Merge branch 'main' into failing-test-issues
radical Apr 7, 2026
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
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
name: Failing test on CI
description: Create a report about a failing test
name: Failing test
description: Create a report about a failing test.
title: "[Failing test]: "
labels: [ 'blocking-clean-ci' ]
labels: [ "failing-test" ]
body:
- type: markdown
attributes:
value: |
Test(s) failing on an Azure DevOps CI run. This issue will track the failures on Azure DevOps runs using the [Known Issues infrastructure](https://github.com/dotnet/arcade/blob/main/Documentation/Projects/Build%20Analysis/KnownIssues.md).
Fill in the `Build information` block. And `Error message template` needs to be filled in by using either `ErrorMessage` or `ErrorPattern` to enable automatic tracking of failing builds.
Test(s) failing on a GitHub Actions CI run. This issue tracks the failure using the known-issues style format.
Fill in the `Build information` block. `Fill in the error message template` should use either `ErrorMessage` or `ErrorPattern` so the issue stays actionable.
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the failure you encountered ([aspire/issues](https://github.com/microsoft/aspire/issues)). More information on our issue management policies is available [here](https://aka.ms/aspnet/issue-policies).
description: Please search [aspire/issues](https://github.com/microsoft/aspire/issues) before filing a new failing-test issue.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Build information
value: |
Build:
Build error leg or test failing:
Pull Request: N/A
Build:
Build error leg or test failing:
validations:
required: true
- type: textarea
Expand All @@ -47,7 +46,30 @@ body:
required: false
- type: textarea
attributes:
label: Other info
description: Any other useful information about the failure
label: Error details
description: Include the failing error message and stack trace in the same style as existing failing-test issues.
value: |
```yml
Error Message:
Stack Trace:
```
validations:
required: false
- type: textarea
attributes:
label: Standard output
description: Paste the relevant standard output inside the existing collapsible details block format.
value: |
<details>
<summary>Standard Output</summary>

```yml
```

</details>
validations:
required: false
- type: markdown
attributes:
value: |
<!-- failing-test-signature: v1:manual -->
Loading
Loading