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"