mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 10:23:39 -06:00
28 lines
636 B
YAML
28 lines
636 B
YAML
name: Release Please
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
workflow_run:
|
|
workflows: ["CI"]
|
|
types:
|
|
- completed
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
release-please:
|
|
name: Create Release PR
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- uses: googleapis/release-please-action@v4
|
|
with:
|
|
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
|
|
config-file: .github/release-please-config.json
|
|
manifest-file: .github/release-please-manifest.json
|