Skip to content
---
# yamllint disable rule:truthy
name: "Pull Request 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

Check failure on line 23 in .github/workflows/trigger-pr-stable.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/trigger-pr-stable.yml

Invalid workflow file

error parsing called workflow ".github/workflows/trigger-pr-stable.yml" -> "./.github/workflows/workflow-docs.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
changelog:
needs: ["docs"]
uses: ./.github/workflows/workflow-changelog.yml
secrets: inherit
release:
needs: ["changelog"]
uses: ./.github/workflows/workflow-release-drafter.yml