We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831279d commit 3e3376fCopy full SHA for 3e3376f
.github/workflows/rename-module.yml
@@ -15,8 +15,9 @@ jobs:
15
rename-module:
16
runs-on: ubuntu-latest
17
env:
18
- source_commit: ${{ inputs.source_commit || '2bd6bd01d2e8561dd7fc21b631f4a34ac16627a1' }}
19
- output_branch: "${{ github.ref_name }}_auto-rename-module-${{ env.source_commit }}"
+ source_commit: "${{ inputs.source_commit || '2bd6bd01d2e8561dd7fc21b631f4a34ac16627a1' }}"
+ # env variables cannot reference others so we have to duplicate the ||
20
+ output_branch: "${{ github.ref_name }}_auto-rename-module-${{ inputs.source_commit || '2bd6bd01d2e8561dd7fc21b631f4a34ac16627a1' }}"
21
steps:
22
- uses: actions/checkout@v4
23
with:
0 commit comments