An open API service indexing awesome lists of open source software.

https://github.com/determinatesystems/propose-release


https://github.com/determinatesystems/propose-release

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# propose-release

Internal tooling for coordinating releases.
Example:

```yml
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 }}
```