From 715049169f3cc5163d6c4490603f2c49c2324132 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Mon, 3 Jun 2024 00:00:54 +0000 Subject: [PATCH] Perform cruft update --- .cruft.json | 2 +- .github/workflows/cruft.yaml | 1 + .github/workflows/lint.yaml | 1 + .github/workflows/test.yaml | 1 + pyproject.toml | 1 + 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.cruft.json b/.cruft.json index 7c3e00b6..185530ac 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/allenporter/cookiecutter-python", - "commit": "fd77e07506da36d1a1e1165363026ddef564bc1a", + "commit": "a3a4a64bf363d94f66e39c3fce1cb9779ebea3a3", "checkout": null, "context": { "cookiecutter": { diff --git a/.github/workflows/cruft.yaml b/.github/workflows/cruft.yaml index 75bc576a..dd09640f 100644 --- a/.github/workflows/cruft.yaml +++ b/.github/workflows/cruft.yaml @@ -3,6 +3,7 @@ name: Update repository with Cruft permissions: contents: write pull-requests: write + actions: write on: schedule: - cron: "0 0 * * *" diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index e9483cc8..efb4334e 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -5,6 +5,7 @@ on: push: branches: - main + - renovate/** pull_request: branches: - main diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 76577863..b367648f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,6 +5,7 @@ on: push: branches: - main + - renovate/** pull_request: branches: - main diff --git a/pyproject.toml b/pyproject.toml index 8d2b4a41..c8061858 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [tool.mypy] exclude = [ + "setup.py", "venv/", ] platform = "linux"