From cc402376d52104816ad1c9ad85b2bc319194ccc3 Mon Sep 17 00:00:00 2001 From: florianvazelle Date: Sun, 23 Jun 2024 12:51:07 +0200 Subject: [PATCH] ci: remove dependabot --- .github/dependabot.yml | 16 --------------- .github/workflows/dependabot_pr.yml | 30 ----------------------------- 2 files changed, 46 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/dependabot_pr.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 7d73cef..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,16 +0,0 @@ -version: 2 -updates: - -- package-ecosystem: github-actions - directory: "/" - schedule: - interval: daily - time: '00:00' - timezone: UTC - open-pull-requests-limit: 10 - commit-message: - prefix: "chore" - include: "scope" - labels: - - "dependabot" - - "dependencies" diff --git a/.github/workflows/dependabot_pr.yml b/.github/workflows/dependabot_pr.yml deleted file mode 100644 index 4b9f082..0000000 --- a/.github/workflows/dependabot_pr.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Dependabot PR actions - -on: - pull_request: - types: [opened, synchronize, reopened, labeled, unlabeled] - -jobs: - dependabot: - runs-on: ubuntu-latest - permissions: - pull-requests: write - contents: write - - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Update the changelog - uses: dangoslen/dependabot-changelog-helper@v3 - with: - version: 'Unreleased' - - - name: Commit the changes - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: "chore(changelog): automatic update to add dependabot deps bump" - branch: ${{ github.head_ref }} - commit_user_name: dependabot[bot] - commit_user_email: support@github.com