From f1bbf3b82dceac9e6ab1e513151df2cac78ae042 Mon Sep 17 00:00:00 2001 From: Matt Craig Date: Sun, 31 Dec 2023 10:48:44 -0600 Subject: [PATCH 1/2] Group dependabot update PRs See https://learn.scientific-python.org/development/guides/gha-basic/#updating --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b1fa2b92..6eaf4569 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,8 @@ updates: directory: "/" schedule: interval: "weekly" + # Open update PRs in groups rather than one-by-one + groups: + actions: + patterns: + - "*" From 386301d1b08b022ce2c97b830ba86962116d0ed9 Mon Sep 17 00:00:00 2001 From: Matt Craig Date: Sun, 31 Dec 2023 10:53:57 -0600 Subject: [PATCH 2/2] Add a manual trigger for CI jobs --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b301639..4d3c72e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,11 @@ name: Test -on: [push, pull_request] +on: + workflow_dispatch: # Allows manual triggering + pull_request: + push: + branches: + - main concurrency: group: ${{ github.workflow }}-${{ github.ref }}