Workflow Run Example #520
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
name: Workflow Run Example | |
on: | |
workflow_run: | |
workflows: [Matrix Example] | |
types: [completed] | |
permissions: | |
contents: read | |
jobs: | |
on-success: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: changed-files | |
uses: ./ | |
- name: Echo list of changed files on success | |
run: | | |
echo "Changed files on success:" | |
echo "${{ steps.changed-files.outputs.all_changed_files }}" | |
on-failure: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: changed-files | |
uses: ./ | |
- name: Echo list of changed files on failure | |
run: | | |
echo "Changed files on failure:" | |
echo "${{ steps.changed-files.outputs.all_changed_files }}" |