https://github.com/determinatesystems/propose-release
https://github.com/determinatesystems/propose-release
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/determinatesystems/propose-release
- Owner: DeterminateSystems
- Created: 2025-02-19T01:57:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-15T01:27:23.000Z (11 months ago)
- Last Synced: 2025-07-15T05:35:32.436Z (11 months ago)
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 }}
```