diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e40bbb76..12af6320 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,11 @@ version: 2 updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: daily + - package-ecosystem: pip + directory: "/" + schedule: + interval: daily + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 10 diff --git a/.github/workflows/pre-commit-update.yml b/.github/workflows/pre-commit-update.yml new file mode 100644 index 00000000..3544b474 --- /dev/null +++ b/.github/workflows/pre-commit-update.yml @@ -0,0 +1,12 @@ +name: CI + +on: + schedule: + # run daily + - cron: "0 0 * * *" + +jobs: + shared-precommit-update: + uses: zigpy/workflows/.github/workflows/pre-commit-update.yml@main + with: + PYTHON_VERSION_DEFAULT: 3.12