We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1e4d5f commit 86d03f7Copy full SHA for 86d03f7
2 files changed
.github/dependabot.yml
@@ -6,9 +6,17 @@ updates:
6
interval: "monthly"
7
labels:
8
- "type: Maintenance"
9
+ groups:
10
+ actions:
11
+ patterns:
12
+ - "*"
13
- package-ecosystem: "pip"
14
directory: "/"
15
schedule:
16
17
18
19
20
21
22
.github/workflows/test.yml
@@ -1,13 +1,18 @@
1
name: Test
2
3
on:
4
+ workflow_dispatch:
5
push:
branches:
- main
pull_request:
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
permissions:
contents: read # to fetch code (actions/checkout)
0 commit comments