Bump Python Package #98
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump Python Package | |
on: | |
# Can be triggered manually | |
workflow_dispatch: | |
inputs: | |
package: | |
required: false | |
description: The python package to bump (all if empty) | |
group: | |
required: false | |
description: The optional dependency group to bump (as defined in pyproject.toml) | |
limit: | |
required: true | |
description: Max number of PRs to open (0 for no limit) | |
default: 5 | |
extra-flags: | |
required: false | |
description: Pass other command line flags to append to the command | |
default: '' | |
jobs: | |
bump-python-package: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
contents: write | |
pull-requests: write | |
checks: write | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: true | |
ref: master | |
- name: Setup supersetbot | |
uses: ./.github/actions/setup-supersetbot/ | |
- name: Set up Python ${{ inputs.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install pip-compile-multi | |
run: pip install pip-compile-multi pipdeptree | |
- name: supersetbot bump-python -p "${{ github.event.inputs.package }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global user.email "action@github.com" | |
git config --global user.name "GitHub Action" | |
PACKAGE_OPT="" | |
if [ -n "${{ github.event.inputs.package }}" ]; then | |
PACKAGE_OPT="-p ${{ github.event.inputs.package }}" | |
fi | |
GROUP_OPT="" | |
if [ -n "${{ github.event.inputs.group }}" ]; then | |
GROUP_OPT="-g ${{ github.event.inputs.group }}" | |
fi | |
supersetbot bump-python \ | |
--verbose \ | |
--use-current-repo \ | |
--limit ${{ github.event.inputs.limit }} \ | |
${{ github.event.inputs.extra-flags }} \ | |
$PACKAGE_OPT \ | |
$GROUP_OPT |