Merge branch 'main' into dependabot/github_actions/peter-evans/create… #365
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: Run Actions / Reuse section | |
| on: push | |
| jobs: | |
| runs-code-workflow: | |
| uses: ./.github/workflows/syntax.yaml | |
| runs-nested-reusable-workflow: | |
| uses: ./.github/workflows/reuse-nested.yaml | |
| # A reusable workflow can't be run from an action | |
| runs-reusable-workflow-from-action: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - id: runs-reusable-workflow-from-action | |
| uses: ./.github/actions/runs-reusable-workflow | |
| continue-on-error: true | |
| - run: | | |
| [[ "${{ steps.runs-reusable-workflow-from-action.outcome }}" == "failure" ]] | |
| [[ "${{ steps.runs-reusable-workflow-from-action.conclusion }}" == "success" ]] | |
| shell: bash |