From 1f1a7c18b84cd60dab1a4a81732ee32b83a01cf7 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Wed, 24 Jan 2024 20:09:24 +0000 Subject: [PATCH] Add Dependabot --- CODEOWNERS => .github/CODEOWNERS | 0 .github/dependabot.yml | 44 ++++++++++++++++++++++++++ renovate.json => .github/renovate.json | 0 .github/workflows/ci.yml | 5 +-- .github/workflows/release.yml | 2 +- 5 files changed, 48 insertions(+), 3 deletions(-) rename CODEOWNERS => .github/CODEOWNERS (100%) create mode 100644 .github/dependabot.yml rename renovate.json => .github/renovate.json (100%) diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from CODEOWNERS rename to .github/CODEOWNERS diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4fcea16 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,44 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + assignees: + - "luketainton" + reviewers: + - "luketainton" + commit-message: + prefix: "chore(actions)" + include: "scope" + labels: + - "dependencies" + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + assignees: + - "luketainton" + reviewers: + - "luketainton" + commit-message: + prefix: "chore(docker)" + include: "scope" + labels: + - "dependencies" + + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + assignees: + - "luketainton" + reviewers: + - "luketainton" + commit-message: + prefix: "chore(pip-prod)" + prefix-development: "chore(pip-dev)" + include: "scope" + labels: + - "dependencies" \ No newline at end of file diff --git a/renovate.json b/.github/renovate.json similarity index 100% rename from renovate.json rename to .github/renovate.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83cd7ec..0927b1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,9 @@ on: - "README.md" - "LICENSE.md" - ".gitignore" - - "CODEOWNERS" - - "renovate.json" + - ".github/CODEOWNERS" + - ".github/renovate.json" + - ".github/dependabot.yml" jobs: pythonci: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94c9b22..5d54b68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,5 +48,5 @@ jobs: with: url: ${{ secrets.PORTAINER_WEBHOOK_URL }} method: POST - timeout: 30000 + timeout: 60000 preventFailureOnNoResponse: "true"