Skip to content

Pre Release

Pre Release #4

---
# yamllint disable rule:truthy
name: "Push on stable"
concurrency: # Cancel any existing runs of this workflow for this same PR
group: "${{ '{{ github.workflow }}' }}-${{ '{{ github.ref }}' }}"
cancel-in-progress: true
on:
pull_request:
branches:
- stable
jobs:
linter:
uses: ./.github/workflows/workflow-linter.yml
tests:
needs: ["linter"]
uses: ./.github/workflows/workflow-tests.yml
docs:
needs: ["linter", "tests"]
uses: ./.github/workflows/workflow-docs.yml
secrets: inherit
changelog:
needs: ["docs"]
uses: ./.github/workflows/workflow-changelog.yml
secrets: inherit
release:
needs: ["changelog"]
uses: ./.github/workflows/workflow-release-drafter.yml