Skip to content

Commit e705bc6

Browse files
committed
Harden CI automation and add Dependabot for Actions
1 parent 94f4145 commit e705bc6

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
day: "monday"
8+
time: "06:00"
9+
timezone: "UTC"
10+
open-pull-requests-limit: 5
11+
groups:
12+
github-actions-dependencies:
13+
patterns:
14+
- "*"

.github/workflows/spec-structure.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,28 @@ name: Spec Directory Structure
33
on:
44
push:
55
branches: [main]
6+
paths:
7+
- "catalog.json"
8+
- "index.html"
9+
- "scripts/**"
10+
- ".github/workflows/**"
11+
- "*/index.html"
12+
- "*-*/**/*-api_openapi-v*.json"
13+
- "*/*-api_openapi-v*.json"
614
pull_request:
715
branches: [main]
16+
paths:
17+
- "catalog.json"
18+
- "index.html"
19+
- "scripts/**"
20+
- ".github/workflows/**"
21+
- "*/index.html"
22+
- "*-*/**/*-api_openapi-v*.json"
23+
- "*/*-api_openapi-v*.json"
24+
25+
concurrency:
26+
group: spec-structure-${{ github.workflow }}-${{ github.ref }}
27+
cancel-in-progress: true
828

929
permissions:
1030
contents: write

0 commit comments

Comments
 (0)