[aw] Unblock Slide Deck Maintainer by enabling LFS checkout and shell command allowlist coverage - #49410
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix incomplete result in Slide Deck Maintainer workflow
[aw] Unblock Slide Deck Maintainer by enabling LFS checkout and shell command allowlist coverage
Jul 31, 2026
pelikhan
marked this pull request as ready for review
August 1, 2026 00:45
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Slide Deck Maintainer to fetch LFS assets and permit its Node-based tooling.
Changes:
- Enables Git LFS checkout and Node.js 24.
- Expands npm, npx, and node shell permissions.
- Regenerates the executable workflow.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/slide-deck-maintainer.md |
Updates checkout, runtime, and tool configuration. |
.github/workflows/slide-deck-maintainer.lock.yml |
Applies the configuration to the generated workflow. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
- Review effort level: Balanced
| - shared/otlp.md | ||
| timeout-minutes: 45 | ||
| checkout: | ||
| lfs: true |
Contributor
|
🎉 This pull request is included in a new release. Release: |
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.
Slide Deck Maintainer was repeatedly emitting
report_incompletebecause required slide assets remained Git LFS pointers and runtime shell invocations (node/npm/npx) were blocked by the workflow’s command allowlist. This change aligns checkout/runtime/allowlist configuration with the workflow’s actual Marp + Playwright execution path.Workflow runtime + checkout alignment
checkout.lfs: truesodocs/slides/*content is available as real files instead of LFS pointers at agent time.Shell allowlist coverage for actual commands
tools.bashpatterns to permit the command forms used by this workflow, including genericnpm,npx, andnodeinvocations (not only a few narrow subcommands).Compiled workflow update
slide-deck-maintainer.lock.ymlto carry the frontmatter changes into the executable workflow (including checkout/runtime/tool permission expansion).