1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
name: Post-process
on:
workflow_run:
branches:
- main
types:
- completed
workflows:
# List all required workflow names here.
- 'testing'
jobs:
auto-gen-release:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.SEMVER_BUMP_TOKEN }}
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: rymndhng/release-on-push-action@v0.25.0
with:
bump_version_scheme: norelease
|