File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change 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
4242permissions : read-all
4343
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
You can’t perform that action at this time.
0 commit comments