mirror of
https://github.com/tj-actions/changed-files
synced 2025-01-31 05:20:11 +00:00
chore: create multi-job-test.yml (#1843)
Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
This commit is contained in:
parent
13fa1c06fc
commit
17e07d8bc0
1 changed files with 38 additions and 0 deletions
38
.github/workflows/multi-job-test.yml
vendored
Normal file
38
.github/workflows/multi-job-test.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: Multi Job Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
changed-files:
|
||||||
|
name: Get changed files
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
all_changed_files: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Get changed files
|
||||||
|
id: changed-files
|
||||||
|
uses: ./
|
||||||
|
- name: List all changed files
|
||||||
|
run: echo '${{ steps.changed-files.outputs.all_changed_files }}'
|
||||||
|
|
||||||
|
view-changed-files:
|
||||||
|
name: View all changed files
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [changed-files]
|
||||||
|
steps:
|
||||||
|
- name: List all changed files
|
||||||
|
run: |
|
||||||
|
echo '${{ needs.changed-files.outputs.all_changed_files }}'
|
Loading…
Reference in a new issue