From 36157a65238c6d05b066dafdc55d58b75a0b7587 Mon Sep 17 00:00:00 2001 From: "octoherd-stoe[bot]" <121860383+octoherd-stoe[bot]@users.noreply.github.com> Date: Tue, 29 Aug 2023 08:15:45 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=A4=96=20Update=20.github/dependabot.?= =?UTF-8?q?yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8deae5b..a95f4ce 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ updates: directory: '/' schedule: interval: 'monthly' + groups: + all-dependencies: + patterns: + - '*' commit-message: prefix: '⬆️ action' labels: @@ -13,8 +17,11 @@ updates: directory: '/' schedule: interval: 'monthly' + groups: + npm: + patterns: + - '*' commit-message: prefix: '⬆️ npm' - include: 'scope' labels: - 'dependency :robot:' From b50d6d70c725403333fba7e05a2ac9991c7fa7c1 Mon Sep 17 00:00:00 2001 From: "octoherd-stoe[bot]" <121860383+octoherd-stoe[bot]@users.noreply.github.com> Date: Tue, 29 Aug 2023 08:15:47 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A4=96=20Delete=20.github/workflows/d?= =?UTF-8?q?ependabot-combine-prs.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dependabot-combine-prs.yml | 31 -------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/dependabot-combine-prs.yml diff --git a/.github/workflows/dependabot-combine-prs.yml b/.github/workflows/dependabot-combine-prs.yml deleted file mode 100644 index 60bdcd4..0000000 --- a/.github/workflows/dependabot-combine-prs.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Combine dependabot prs - -on: - schedule: - # run every 1st of the month at 00:42 UTC - - cron: '42 0 1 * *' - workflow_dispatch: - -permissions: - contents: write - pull-requests: write - checks: read - -jobs: - combine-prs: - runs-on: ubuntu-latest - - steps: - - name: use app token - uses: peter-murray/workflow-application-token-action@8e1ba3bf1619726336414f1014e37f17fbadf1db - id: generate_token - with: - application_id: ${{ secrets.APP_ID }} - application_private_key: ${{ secrets.PRIVATE_KEY }} - - - name: combine prs - id: combine-prs - uses: github/combine-prs@8e631fc3eb9337039c61b2b89219bf2a2259a4d6 - with: - pr_title: 🤖 Combined @dependabot PRs - github_token: ${{ steps.generate_token.outputs.token }}