Skip to content

Commit f80db00

Browse files
committed
Bits
1 parent 5b93557 commit f80db00

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/CODEOWNERS

-1
This file was deleted.

.github/dependabot.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
version: 2
22
updates:
3-
- package-ecosystem: ""
3+
- package-ecosystem: "pip"
44
directory: "/"
55
schedule:
66
interval: "monthly"
7+
8+
- package-ecosystem: "github-actions"
9+
directory: "/.github/workflows"
10+
schedule:
11+
interval: "monthly"

.github/workflows/continuous-deployment.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
name: Test
1+
name: Continuous Deployment
2+
23
on:
34
push:
45
workflow_dispatch:
56

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
611
jobs:
712
lint-python:
813
name: Lint

0 commit comments

Comments
 (0)