Skip to content

Commit 7a2223a

Browse files
authored
docs: add dependabot and devsecops workflows (#225)
1 parent c5c3e73 commit 7a2223a

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
day: "monday"
8+
open-pull-requests-limit: 10
9+
versioning-strategy: increase
10+
labels:
11+
- "npm dependencies"
12+
groups:
13+
non-major:
14+
update-types:
15+
- "minor"
16+
- "patch"
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
19+
schedule:
20+
interval: "weekly"
21+
day: "monday"

.github/workflows/devsecops.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
run-name: DevSecOps
2+
name: DevSecOps
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
types: [opened, synchronize, reopened]
10+
jobs:
11+
devsecops:
12+
uses: grupoboticario/actions-devsecops-workflows/.github/workflows/devsecops.yml@v0

0 commit comments

Comments
 (0)