From db3310a0e0ecd4142072046cd5c714cb2501f3a5 Mon Sep 17 00:00:00 2001 From: Kolby Moroz Liebl <31669092+KolbyML@users.noreply.github.com> Date: Sun, 16 Feb 2025 11:26:16 -0700 Subject: [PATCH 1/2] fix(ci): make dependencies update bot commit under github-actions account --- .github/workflows/dependencies.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index e1f9529d1..b595222fa 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -31,6 +31,9 @@ jobs: update: name: Update runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable @@ -57,6 +60,7 @@ jobs: with: add-paths: ./Cargo.lock commit-message: ${{ steps.msg.outputs.commit_message }} + author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> title: ${{ env.TITLE }} body: ${{ steps.msg.outputs.body }} branch: ${{ env.BRANCH }} From bf66952ff74ac5b7563095321d836921182fc16f Mon Sep 17 00:00:00 2001 From: Kolby Moroz Liebl <31669092+KolbyML@users.noreply.github.com> Date: Mon, 17 Feb 2025 03:40:13 -0700 Subject: [PATCH 2/2] fix: remove unneeded permissions --- .github/workflows/dependencies.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index b595222fa..3a1fc14f9 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -31,9 +31,6 @@ jobs: update: name: Update runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable