Skip to content

Auto Release

Auto Release #1

Workflow file for this run

name: Release Auto
on:
workflow_dispatch:
schedule:
# at 5:30 UTC every other month
- cron: "30 5 1 */2 *"
jobs:
check:
uses: coditory/workflows/.github/workflows/release-auto-check.yml@v1
secrets: inherit
auto-release:
uses: ./.github/workflows/release.yml
secrets: inherit
if: needs.check.outputs.release == 'true'
needs: check