Skip to content

Refresh dev dependencies #176

Refresh dev dependencies

Refresh dev dependencies #176

Workflow file for this run

---
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
permissions:
contents: read
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.12"
- base-branch: stable-2.20
pr-branch: pip-compile/stable-2.20/dev
nox-args: >-
-e 'pip-compile(formatters)'
'pip-compile(typing)'
'pip-compile(static)'
'pip-compile(spelling)'
python-versions: "3.12"
- 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"
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:
BOT_APP_ID: "${{ secrets.BOT_APP_ID }}"

Check failure on line 78 in .github/workflows/pip-compile-dev.yml

View workflow run for this annotation

GitHub Actions / Refresh dev dependencies

Invalid workflow file

The workflow is not valid. .github/workflows/pip-compile-dev.yml (Line: 78, Col: 19): Invalid secret, BOT_APP_ID is not defined in the referenced workflow. .github/workflows/pip-compile-dev.yml (Line: 79, Col: 20): Invalid secret, BOT_APP_KEY is not defined in the referenced workflow.
BOT_APP_KEY: "${{ secrets.BOT_APP_KEY }}"