Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 610 Bytes

README.md

File metadata and controls

31 lines (27 loc) · 610 Bytes

propose-release

Internal tooling for coordinating releases. Example:

on:
  workflow_dispatch:
    inputs:
      reference-id:
        type: string
        required: true
      version:
        type: string
        required: true

concurrency:
  group: ${{ github.workflow }}
  cancel-in-progress: true

jobs:
  propose-release:
    uses: DeterminateSystems/propose-release/.github/workflows/workflow.yml@main
    permissions:
      id-token: "write"
      contents: "write"
      pull-requests: write
    with:
      reference-id: ${{ inputs.reference-id }}
      version: ${{ inputs.version }}