From 2805ec7967c6e30ba957e432acf486fe13233ee7 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 3 Jul 2024 08:59:38 -0700 Subject: [PATCH] Update GH actions --- .github/dependabot.yml | 8 ++++++++ .github/workflows/test.yml | 5 +++++ 2 files changed, 13 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 76c0f80..ea72cdd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,9 +6,17 @@ updates: interval: "monthly" labels: - "type: Maintenance" + groups: + actions: + patterns: + - "*" - package-ecosystem: "pip" directory: "/" schedule: interval: "monthly" labels: - "type: Maintenance" + groups: + actions: + patterns: + - "*" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 88014a6..26b09d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,7 @@ name: Test on: + workflow_dispatch: push: branches: - main @@ -8,6 +9,10 @@ on: branches: - main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: contents: read # to fetch code (actions/checkout)