Skip to content

ReproGate v0.1.1

Choose a tag to compare

@JinRudy JinRudy released this 13 Jun 06:25

Marketplace-ready Action release.

Highlights

  • Added Marketplace metadata in action.yml: author, branding, and configurable inputs.
  • Added fail-on-missing strict 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.1 step.
  • Added action-self-test workflow that calls the local Action in default, strict-failure, and ready-report modes.
  • Fixed packaging so cmd/reprogate/main.go is 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.1

Strict mode

- uses: JinRudy/reprogate@v0.1.1
  with:
    fail-on-missing: "true"

This release is the recommended version for publishing to GitHub Marketplace.