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 11cad14 commit 012ed20Copy full SHA for 012ed20
action.yml
@@ -39,9 +39,9 @@ runs:
39
using: 'docker'
40
image: 'docker://phpdockerio/github-actions-delete-abandoned-branches:v2'
41
args:
42
- - --ignore-branches="${{ inputs.ignore_branches }}"
43
- - --last-commit-age-days="${{ inputs.last_commit_age_days }}"
+ - --ignore-branches=${{ inputs.ignore_branches }}
+ - --last-commit-age-days=${{ inputs.last_commit_age_days }}
44
- --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 }}"
+ - --dry-run=${{ inputs.dry_run }}
+ - --github-token=${{ inputs.github_token }}
+ - --github-base-url=${{ inputs.github_base_url }}
0 commit comments