diff --git a/.github/workflows/bump-python-package.yml b/.github/workflows/bump-python-package.yml index 846291828..9f3fff5ce 100644 --- a/.github/workflows/bump-python-package.yml +++ b/.github/workflows/bump-python-package.yml @@ -14,6 +14,12 @@ on: required: true description: Max number of PRs to open (0 for no limit) default: 5 + extra-flags: + required: false + default: --only-base + description: Additional flags to pass to the bump-python command + #schedule: + # - cron: '0 0 * * *' # Runs daily at midnight UTC jobs: bump-python-package: @@ -59,10 +65,13 @@ jobs: GROUP_OPT="-g ${{ github.event.inputs.group }}" fi + EXTRA_FLAGS="${{ github.event.inputs.extra-flags }}" + supersetbot bump-python \ --verbose \ --use-current-repo \ --include-subpackages \ --limit ${{ github.event.inputs.limit }} \ $PACKAGE_OPT \ - $GROUP_OPT + $GROUP_OPT \ + $EXTRA_FLAGS