Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
|
|
- 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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
|
|
- 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 }}"
|