chore(🦾): bump python mako 1.3.5 -> 1.3.6 (#31097)

Co-authored-by: GitHub Action <action@github.com>
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com>
This commit is contained in:
github-actions[bot] 2024-11-24 22:19:16 -08:00 committed by GitHub
parent 5aee59cc3a
commit 55f0713a2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 1 deletions

View File

@ -14,6 +14,12 @@ on:
required: true required: true
description: Max number of PRs to open (0 for no limit) description: Max number of PRs to open (0 for no limit)
default: 5 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: jobs:
bump-python-package: bump-python-package:
@ -59,10 +65,13 @@ jobs:
GROUP_OPT="-g ${{ github.event.inputs.group }}" GROUP_OPT="-g ${{ github.event.inputs.group }}"
fi fi
EXTRA_FLAGS="${{ github.event.inputs.extra-flags }}"
supersetbot bump-python \ supersetbot bump-python \
--verbose \ --verbose \
--use-current-repo \ --use-current-repo \
--include-subpackages \ --include-subpackages \
--limit ${{ github.event.inputs.limit }} \ --limit ${{ github.event.inputs.limit }} \
$PACKAGE_OPT \ $PACKAGE_OPT \
$GROUP_OPT $GROUP_OPT \
$EXTRA_FLAGS