Skip to content

Update show_files.yaml #1

Update show_files.yaml

Update show_files.yaml #1

Workflow file for this run

name: Test
on:
push:
# tags-ignore:
# - '*'
branches:
- 'devops'
pull_request:
workflow_dispatch:
jobs:
list-files:
runs-on: ubuntu-latest
outputs:
paths: ${{ steps.list-files.outputs.paths }}
steps:
- name: List Files
id: list-files
uses: mirko-felice/[email protected]
with:
repo: ${{ github.repository }}
ref: ${{ github.ref }}
path: "."
ext: ".yml"
Test:
needs: list-files
strategy:
matrix:
paths: ${{ fromJson(needs.list-files.outputs.paths) }}
runs-on: ubuntu-latest
steps:
- name: Output results
run: |
echo ${{ matrix.paths }}