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)