Skip to content

Commit

Permalink
Improve readability of calling long command
Browse files Browse the repository at this point in the history
  • Loading branch information
hustcer committed Oct 25, 2024
1 parent b79b30b commit 95643ad
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,14 @@ runs:
let issue = '${{ github.event.issue.number }}'
let pr = '${{ github.event.pull_request.number }}'
let force = '${{ inputs.force }}' | into bool
milestone-action $action $repo --gh-token=$token --force=$force --pr=$pr --issue=$issue --milestone=$milestone --title=$title --description=$description --due-on=$dueOn
(milestone-action $action $repo
--pr=$pr
--issue=$issue
--force=$force
--gh-token=$token
--milestone=$milestone
--title=$title
--due-on=$dueOn
--description=$description
)

0 comments on commit 95643ad

Please sign in to comment.