Auto Patch Release #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto Patch Release | |
| on: | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| workflow_dispatch: | |
| inputs: | |
| dry_run: | |
| description: Dry run (no commit, tag, or Slack notification) | |
| type: boolean | |
| default: true | |
| force_release: | |
| description: Force release (override unsafe-commit check) | |
| type: boolean | |
| default: false | |
| release_type: | |
| description: Version bump | |
| type: choice | |
| options: | |
| - patch | |
| - minor | |
| - major | |
| default: patch | |
| jobs: | |
| auto-patch-release: | |
| uses: steadybit/extension-kit/.github/workflows/reusable-auto-patch-release.yml@main # NOSONAR githubactions:S7637 - our own action | |
| with: | |
| VERSION_BUMPER_APPID: ${{ vars.GH_APP_STEADYBIT_APP_ID }} | |
| dry_run: ${{ inputs.dry_run || false }} | |
| force_release: ${{ inputs.force_release || false }} | |
| release_type: ${{ inputs.release_type || 'patch' }} | |
| secrets: | |
| VERSION_BUMPER_SECRET: ${{ secrets.GH_APP_STEADYBIT_PRIVATE_KEY }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |