Skip to content

Commit 13a4a13

Browse files
committed
Rename reusable workflows to start with underscores
This seems to be more conventional in GitHub repos.
1 parent f69ef7d commit 13a4a13

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

File renamed without changes.

.github/workflows/reusable_find_changes.yaml renamed to .github/workflows/_find_changes.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ on:
3434
outputs:
3535
code:
3636
description: 'True if any code files were changed'
37-
value: jobs.test.outputs.only-noncode-changes == 'false'
37+
value: ${{jobs.test.outputs.only-noncode-changes == 'false'}}
3838
python:
3939
description: 'True if Python files were changed'
40-
value: jobs.test.outputs.have-python-changes == 'true'
40+
value: ${{jobs.test.outputs.python-changes == 'true'}}
4141

4242
permissions: read-all
4343

@@ -47,8 +47,8 @@ jobs:
4747
runs-on: ubuntu-24.04
4848
timeout-minutes: 5
4949
outputs:
50-
only-noncode-changes: steps.only-noncode-files.outputs.matched
51-
python-changes: steps.python-files.outputs.matched
50+
only-noncode-changes: ${{steps.only-noncode-files.outputs.matched}}
51+
python-changes: ${{steps.python-files.outputs.matched}}
5252
steps:
5353
- name: Check out a copy of the git repository
5454
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

0 commit comments

Comments
 (0)