Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Add workflow for config file bumps #146

Merged
merged 3 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/config-file-deps-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Bump Config File Dependencies

on:
schedule:
- cron: "0 20 * * SUN" # Sunday @ 2000 UTC
workflow_dispatch:

jobs:
dep-bump-versions:
name: Bump Config File Dependencies
uses: beeware/.github/.github/workflows/dep-version-bump.yml@main
secrets: inherit
1 change: 1 addition & 0 deletions changes/146.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A workflow to update config files was added.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"setuptools==69.5.1",
"setuptools_scm==8.0.4",
"setuptools_scm==8.1.0",
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -55,6 +55,7 @@ dev = [
"pre-commit == 3.5.0 ; python_version < '3.9'",
"pre-commit == 3.7.1 ; python_version >= '3.9'",
"pytest == 8.2.0",
"setuptools_scm == 8.1.0",
"tox == 4.15.0",
]

Expand Down