Conversation
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
The form parser integration, workflow expressions, pinned actions, documentation, and Node.js upgrade are consistent and validated by passing checks.
Review effort: Balanced
Findings: None
What changed in this PR
Modernizes marketplace-action requests with structured issue forms and Node.js 24.
Changes:
- Replaces JSON-based issue templates with YAML issue forms and parser integration.
- Updates request documentation and examples.
- Upgrades CI and development environments to Node.js 24.
| File | Description |
|---|---|
README.md |
Documents the form-based request process. |
examples.md |
Shows example form values. |
.github/workflows/test.yml |
Tests with Node.js 24. |
.github/workflows/pr.yml |
Runs PR checks with Node.js 24. |
.github/workflows/initialize-request.yml |
Parses and validates issue forms. |
.github/workflows/approve-or-deny-request.yml |
Parses form data during approval. |
.github/ISSUE_TEMPLATE/request_marketplace_action.yml |
Defines the structured request form. |
.github/ISSUE_TEMPLATE/request_marketplace_action.md |
Removes the legacy template. |
.devcontainer/Dockerfile |
Uses the Node.js 24 devcontainer image. |
.devcontainer/devcontainer.json |
Configures the Node.js 24 variant. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
lindluni
approved these changes
Sep 21, 2026
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.
This pull request modernizes and simplifies the process for requesting marketplace actions by migrating from legacy markdown-based issue templates to GitHub's YAML issue forms, updating documentation, and upgrading Node.js and related tooling across development and CI environments. The changes streamline user experience, improve automation reliability, and update dependencies for better maintainability.
Issue request workflow modernization:
request_marketplace_action.md) with a new YAML issue form (request_marketplace_action.yml), allowing users to submit requests through structured form fields instead of manually pasting JSON blocks. [1] [2].github/workflows/approve-or-deny-request.ymland.github/workflows/initialize-request.ymlto use the newissue-ops/parseraction instead of the deprecatedissue-body-parser-action, ensuring compatibility with the new issue form structure. [1] [2]Documentation updates:
README.mdandexamples.mdto reflect the new issue request process, replacing markdown JSON snippets with clear instructions and tabular examples for the new form-based workflow. [1] [2]Development and CI environment upgrades:
test.yml,pr.yml,approve-or-deny-request.yml,initialize-request.yml) and in the devcontainer configuration for local development. [1] [2] [3] [4] [5] [6]