Fix workflow stalling on self-hosted runners by converting string literals to arrays#71
Merged
Merged
Conversation
Co-authored-by: Kumara-Krishnan <[email protected]>
Co-authored-by: Kumara-Krishnan <[email protected]>
Copilot
AI
changed the title
[WIP] Fix stall in msix build release workflow
Fix workflow stalling on self-hosted runners by converting string literals to arrays
Jan 29, 2026
Kumara-Krishnan
approved these changes
Jan 30, 2026
Collaborator
|
@copilot checks failing |
Co-authored-by: Kumara-Krishnan <[email protected]>
Co-authored-by: Kumara-Krishnan <[email protected]>
Author
Fixed in commit d3d3223. The workflow was failing because:
The workflow now correctly runs on self-hosted runners and checks out the proper branch for PRs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix MSIX Build Release Workflow on Self-Hosted Runners
Issue Analysis ✓
The workflow was failing with two issues:
runs-onexpressions evaluated to string literals instead of arrays71/mergeRoot Cause ✓
'[self-hosted, windows]'as a literal string, not an array of labelsgithub.ref_namereturns the merge ref (e.g.,71/merge), which doesn't exist as a branchSolution Implemented ✓
fromJSON()for proper array conversiongithub.head_reffor pull requestsTechnical Changes ✓
1. Fixed runs-on expressions (All 6 jobs)
2. Fixed checkout refs for pull requests
Verification ✓
Expected Behavior
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.