watchexec/.github/workflows/release-pr.yml

55 lines
1.3 KiB
YAML
Raw Normal View History

2022-06-15 05:25:05 +02:00
name: Open a release PR
on:
workflow_dispatch:
inputs:
crate:
description: Crate to release
required: true
type: choice
options:
2022-06-15 05:25:05 +02:00
- cli
- lib
2023-03-05 04:29:54 +01:00
- bosion
2023-03-18 09:32:24 +01:00
- events
2022-06-15 05:25:05 +02:00
- ignore-files
- project-origins
2023-03-18 09:32:24 +01:00
- signals
- supervisor
2023-03-18 09:32:24 +01:00
- filterer/globset
- filterer/ignore
- filterer/tagged
2022-06-15 05:25:05 +02:00
version:
description: Version to release
required: true
type: string
2022-09-07 06:54:40 +02:00
default: patch
2022-06-15 05:25:05 +02:00
jobs:
make-release-pr:
2022-09-07 06:53:28 +02:00
permissions:
id-token: write # Enable OIDC
pull-requests: write
contents: write
2022-06-15 05:25:05 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chainguard-dev/actions/setup-gitsign@main
2022-06-15 05:25:05 +02:00
- name: Install cargo-release
uses: taiki-e/install-action@v2
2022-06-15 05:25:05 +02:00
with:
2022-09-07 01:24:53 +02:00
tool: cargo-release
2022-06-15 05:25:05 +02:00
- uses: cargo-bins/release-pr@v2
2022-09-07 01:24:53 +02:00
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
version: ${{ inputs.version }}
crate-path: crates/${{ inputs.crate }}
pr-release-notes: true
2022-09-07 01:24:53 +02:00
pr-label: release
pr-template-file: .github/workflows/release-pr.ejs
2022-09-07 06:46:19 +02:00
env:
GITSIGN_LOG: /tmp/gitsign.log
- run: cat /tmp/gitsign.log
if: ${{ failure() }}