From 1e9bde18c7f89fc78865eb56bdc2bb12adb8fdd3 Mon Sep 17 00:00:00 2001 From: C4illin Date: Mon, 5 Aug 2024 21:25:18 +0200 Subject: [PATCH] chore: use renovate instead --- .github/workflows/bun-dependabot.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/bun-dependabot.yml diff --git a/.github/workflows/bun-dependabot.yml b/.github/workflows/bun-dependabot.yml deleted file mode 100644 index 2bddec7..0000000 --- a/.github/workflows/bun-dependabot.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: 'Dependabot: Update bun.lockb' - -on: - pull_request: - paths: - - "package.json" - -permissions: - contents: write - -jobs: - update-bun-lockb: - name: "Update bun.lockb" - if: github.actor == 'dependabot[bot]' - runs-on: ubuntu-latest - steps: - - uses: oven-sh/setup-bun@v2 - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ref: ${{ github.event.pull_request.head.ref }} - - run: | - bun install - git add bun.lockb - git config --global user.name 'dependabot[bot]' - git config --global user.email 'dependabot[bot]@users.noreply.github.com' - git commit --amend --no-edit - git push --force