Files
ansible-docs/.github/workflows/pip-compile-dev.yml
Don Naro 337f2fe1e1 update devel workflows for stable-2.19 (#2523)
* update devel workflows for stable-2.19

* Update .github/workflows/pip-compile-dev.yml

Co-authored-by: Maxwell G <maxwell@gtmx.me>

* Update .github/workflows/pip-compile-dev.yml

Co-authored-by: Maxwell G <maxwell@gtmx.me>

* update pip compile dev workflow

* update tagger

---------

Co-authored-by: Maxwell G <maxwell@gtmx.me>
2025-04-17 09:32:34 +01:00

75 lines
2.3 KiB
YAML

---
name: "Refresh dev dependencies"
"on":
schedule:
# Weekly
- cron: "0 0 * * 0"
workflow_dispatch:
inputs:
reset-branch:
type: boolean
default: false
labels:
required: false
type: string
jobs:
refresh:
strategy:
fail-fast: false
matrix:
include:
- base-branch: devel
pr-branch: pip-compile/devel/dev
nox-args: >-
-e 'pip-compile(formatters)'
'pip-compile(typing)'
'pip-compile(static)'
'pip-compile(spelling)'
'pip-compile(tag)'
'pip-compile(pip-compile)'
python-versions: "3.11"
- base-branch: stable-2.19
pr-branch: pip-compile/stable-2.19/dev
nox-args: >-
-e 'pip-compile(formatters)'
'pip-compile(typing)'
'pip-compile(static)'
'pip-compile(spelling)'
python-versions: "3.11"
- base-branch: stable-2.18
pr-branch: pip-compile/stable-2.18/dev
nox-args: >-
-e 'pip-compile(formatters)'
'pip-compile(typing)'
'pip-compile(static)'
'pip-compile(spelling)'
python-versions: "3.11"
- base-branch: stable-2.17
pr-branch: pip-compile/stable-2.17/dev
nox-args: >-
-e 'pip-compile(formatters)'
'pip-compile(typing)'
'pip-compile(static)'
'pip-compile(spelling)'
python-versions: "3.10"
- base-branch: stable-2.16
pr-branch: pip-compile/stable-2.16/dev
nox-args: >-
-e 'pip-compile(formatters)'
'pip-compile(typing)'
'pip-compile(static)'
'pip-compile(spelling)'
python-versions: "3.10"
name: "Refresh dev dependencies"
uses: ./.github/workflows/reusable-pip-compile.yml
with:
message: "ci: refresh dev dependencies"
base-branch: "${{ matrix.base-branch }}"
pr-branch: "${{ matrix.pr-branch }}"
nox-args: "${{ matrix.nox-args }}"
python-versions: "${{ matrix.python-versions }}"
reset-branch: "${{ inputs.reset-branch || false }}"
labels: "${{ inputs.labels || 'no_backport,tooling' }}"
secrets: inherit