From dd5e8bcde7ceb8d326dbc57cd0a25018aa99b84a Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Mon, 11 Nov 2024 12:05:50 +0100 Subject: [PATCH] Add `rust-maintain` to auto-update Dependencies and auto-fix lints --- .github/workflows/crate-maintenance.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/crate-maintenance.yml diff --git a/.github/workflows/crate-maintenance.yml b/.github/workflows/crate-maintenance.yml new file mode 100644 index 0000000..570c519 --- /dev/null +++ b/.github/workflows/crate-maintenance.yml @@ -0,0 +1,18 @@ +name: Crate maintenance + +on: + schedule: + - cron: "14 3 * * 5" # every friday at 03:14 + workflow_dispatch: + +jobs: + rust-maintain: + runs-on: ubuntu-latest + + permissions: + contents: write + pull-requests: write + + steps: + # you should use a *pinned commit*: + - uses: Swatinem/rust-maintain@d30335b4b3c4c7a19c42ca2e25e3d73500f22098