Conversation
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/e116da1d-19b0-439f-b03f-b1ae9d41d6c3 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/e116da1d-19b0-439f-b03f-b1ae9d41d6c3 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
pelikhan
April 20, 2026 12:34
View session
pelikhan
approved these changes
Apr 20, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes the daily AstroStyleLite markdown spellcheck workflow so the spellcheck job actually runs by removing an invalid if gate that referenced a non-existent needs.activation.outputs.activated output.
Changes:
- Removed the job-level
if: needs.activation.outputs.activated == 'true'gate from thespellcheckjob in the source workflow markdown. - Synced the compiled workflow lock file to reflect the source workflow change.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/daily-astrostylelite-markdown-spellcheck.md |
Removes the invalid spellcheck activation gate so the spellcheck job is no longer skipped. |
.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml |
Regenerates the compiled workflow to remove the same invalid if condition in the lock file. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 0
This was referenced Apr 20, 2026
Closed
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.
The daily AstroStyleLite spellcheck workflow was skipping the
spellcheckjob, so the core scan never executed. The skip was caused by anifcondition referencing a non-existentactivationoutput (activated).Root cause
spellcheckwas gated byneeds.activation.outputs.activated == 'true'.activationjob does not emitactivated, so the condition evaluated false and the job was skipped.Workflow change
spellcheckin the source workflow markdown.agentstill depends onspellcheck.outputs.has_findings == 'true'), so only agent execution remains conditional.Compiled workflow sync