Skip to content

Commit 012ed20

Browse files
committed
Remove quoted args from action
1 parent 11cad14 commit 012ed20

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ runs:
3939
using: 'docker'
4040
image: 'docker://phpdockerio/github-actions-delete-abandoned-branches:v2'
4141
args:
42-
- --ignore-branches="${{ inputs.ignore_branches }}"
43-
- --last-commit-age-days="${{ inputs.last_commit_age_days }}"
42+
- --ignore-branches=${{ inputs.ignore_branches }}
43+
- --last-commit-age-days=${{ inputs.last_commit_age_days }}
4444
- --allowed-prefixes=${{ inputs.allowed_prefixes }}
45-
- --dry-run="${{ inputs.dry_run }}"
46-
- --github-token="${{ inputs.github_token }}"
47-
- --github-base-url="${{ inputs.github_base_url }}"
45+
- --dry-run=${{ inputs.dry_run }}
46+
- --github-token=${{ inputs.github_token }}
47+
- --github-base-url=${{ inputs.github_base_url }}

0 commit comments

Comments
 (0)