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:
parent
5aee59cc3a
commit
55f0713a2f
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue