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 fe1d4b7 commit 70e08bdCopy full SHA for 70e08bd
action.yaml
@@ -15,8 +15,8 @@ inputs:
15
type: boolean
16
default: false
17
required: false
18
- commit-changes:
19
- description: 'Commit values read to the properties file'
+ dry-run-enabled:
+ description: 'Dry run the script'
20
21
22
@@ -158,7 +158,7 @@ runs:
158
echo "Overwrite complete"
159
160
- name: Commit values to repo-properties.yaml
161
- if: ${{ inputs.commit-changes == 'true' }}
+ if: ${{ inputs.dry-run-enabled != 'true' }}
162
shell: bash
163
run: |
164
git config user.name "${{ inputs.commit-author-name }}"
0 commit comments