ReproGate v0.1.1
Marketplace-ready Action release.
Highlights
- Added Marketplace metadata in
action.yml: author, branding, and configurable inputs. - Added
fail-on-missingstrict mode for CI users who want missing reproduction evidence to fail the workflow. - The Action now sets up Go internally, so users can run it with a single
uses: JinRudy/reprogate@v0.1.1step. - Added
action-self-testworkflow that calls the local Action in default, strict-failure, and ready-report modes. - Fixed packaging so
cmd/reprogate/main.gois included in the repository and release tag.
Minimal workflow
name: reprogate
on:
issues:
types: [opened, edited]
pull_request:
types: [opened, edited, synchronize]
jobs:
ready-check:
runs-on: ubuntu-latest
steps:
- uses: JinRudy/reprogate@v0.1.1Strict mode
- uses: JinRudy/reprogate@v0.1.1
with:
fail-on-missing: "true"This release is the recommended version for publishing to GitHub Marketplace.