Skip to content

Commit

Permalink
ci(fix): correct output syntax for check_paths workflow and setting b…
Browse files Browse the repository at this point in the history
…ase branch
  • Loading branch information
JakobLichterfeld committed Sep 19, 2024
1 parent e41b510 commit a0d4c3e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check_paths.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ on:
workflow_call:
# Map the workflow outputs to job outputs
outputs:
githubfolder: ${{ jobs.check_paths.githubfolder }}
githubfolder:
description: "changes to .github folder"
value: ${{ jobs.check_paths.githubfolder }}
push:
paths:
- "**/*"
Expand All @@ -31,6 +33,7 @@ jobs:
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: filter
with:
base: "master" # needed to set as a called workflow does not have direct access to repository.default_branch
filters: |
githubfolder:
- '.github/**'

0 comments on commit a0d4c3e

Please sign in to comment.