From 55f0713a2fca2b4d458fdf67ec214b9cc12e332b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Nov 2024 22:19:16 -0800 Subject: [PATCH] =?UTF-8?q?chore(=F0=9F=A6=BE):=20bump=20python=20mako=201?= =?UTF-8?q?.3.5=20->=201.3.6=20(#31097)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: GitHub Action Co-authored-by: Maxime Beauchemin --- .github/workflows/bump-python-package.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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