Skip to content

Commit

Permalink
pass flag --dry-run instead of bool
Browse files Browse the repository at this point in the history
  • Loading branch information
devops committed Feb 14, 2024
1 parent 718b183 commit aad8f48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
org: 'runtimeverification'
repo: ${{ matrix.value }}
token: ${{ secrets.JENKINS_GITHUB_PAT }}
debug: true
debug: --dry-run
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
debug:
description: 'Debug mode'
required: false
default: 'false'
default: ''
outputs:
merged:
value: ${{ steps.automerge.outputs.merged }}
Expand Down Expand Up @@ -53,5 +53,5 @@ runs:
env:
GITHUB_TOKEN: ${{ inputs.token }}
working-directory: tmp-${{ inputs.repo }}
run: python3 ${{ github.action_path }}/src/automerge.py --org ${{ inputs.org }} --repo ${{ inputs.repo }} --dry-run ${{ inputs.debug }}
run: python3 ${{ github.action_path }}/src/automerge.py --org ${{ inputs.org }} --repo ${{ inputs.repo }} ${{ inputs.debug }}

0 comments on commit aad8f48

Please sign in to comment.