Skip to content

Commit

Permalink
Test workflow now with dry-run as an option from the workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
devops committed Feb 14, 2024
1 parent e91699b commit 0073958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/automerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
parser = argparse.ArgumentParser(description='Automerge approved PRs.')
parser.add_argument('--repo', type=str, help='The repository to check.')
parser.add_argument('--org', type=str, help='The GitHub organization to check.')
parser.add_argument('--dry-run', action='store_true', help='Enable DR run mode.')
parser.add_argument('--dry-run', action='store_true', default=False, help='Enable Debug/Dry-Run mode.')
args = parser.parse_args()

_LOGGER: Final = logging.getLogger(__name__)
Expand Down

0 comments on commit 0073958

Please sign in to comment.