Skip to content

Commit 70e08bd

Browse files
committed
switch to dry-run-enabled flag
Signed-off-by: Andrew Brandt <[email protected]>
1 parent fe1d4b7 commit 70e08bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ inputs:
1515
type: boolean
1616
default: false
1717
required: false
18-
commit-changes:
19-
description: 'Commit values read to the properties file'
18+
dry-run-enabled:
19+
description: 'Dry run the script'
2020
type: boolean
2121
default: false
2222
required: false
@@ -158,7 +158,7 @@ runs:
158158
echo "Overwrite complete"
159159
160160
- name: Commit values to repo-properties.yaml
161-
if: ${{ inputs.commit-changes == 'true' }}
161+
if: ${{ inputs.dry-run-enabled != 'true' }}
162162
shell: bash
163163
run: |
164164
git config user.name "${{ inputs.commit-author-name }}"

0 commit comments

Comments
 (0)