Skip to content

Commit

Permalink
Update if logic
Browse files Browse the repository at this point in the history
  • Loading branch information
rv-jenkins committed Mar 16, 2024
1 parent 0473425 commit 59d34c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ runs:
shell: bash {0}
env:
GITHUB_TOKEN: ${{ inputs.token }}
comment: ${{ inputs.comment }}
working-directory: tmp-${{ inputs.repo }}
run: |
if {{ inputs.comment }} == 'true'; then
if ${comment} == 'true'; then
python3 ${{ github.action_path }}/src/automerge.py --org ${{ inputs.org }} --repo ${{ inputs.repo }} --comment
else
python3 ${{ github.action_path }}/src/automerge.py --org ${{ inputs.org }} --repo ${{ inputs.repo }} ${{ inputs.debug }}
Expand Down

0 comments on commit 59d34c9

Please sign in to comment.