overwrite crun in reusable-molecule.yml #65
Workflow file for this run
This file contains 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
# vim: set ft=yaml ts=2 expandtab: | |
# | |
# Copyright (c) Markus Falb <[email protected]> | |
# GNU General Public License v3.0+ | |
# see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt | |
--- | |
name: Pullrequest | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
jobs: | |
selectbranch: | |
uses: ./.github/workflows/reusable-selectbranch.yml | |
sanity: | |
uses: ./.github/workflows/reusable-sanity.yml | |
with: | |
targeted_branch: ${{ needs.selectbranch.outputs.ref }} | |
needs: selectbranch | |
allsuccess: | |
if: success() || failure() | |
uses: ./.github/workflows/reusable-allsuccess.yml | |
with: | |
joblist: ${{ toJSON(needs) }} | |
needs: | |
- selectbranch | |
- sanity | |
... |