Skip to content

Commit 1b6b11d

Browse files
ci: migrate to shared org workflows
Replace content.yml with: - docs.yml: calls anolishq/.github docs-check - metrics.yml: calls anolishq/.github metrics Remove local .markdownlint.json (now fetched from org)
1 parent 7893bf1 commit 1b6b11d

4 files changed

Lines changed: 32 additions & 108 deletions

File tree

.github/workflows/content.yml

Lines changed: 0 additions & 99 deletions
This file was deleted.

.github/workflows/docs.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Docs
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'docs/**'
8+
- 'README.md'
9+
- 'CONTRIBUTING.md'
10+
pull_request:
11+
branches: [main]
12+
paths:
13+
- 'docs/**'
14+
- 'README.md'
15+
- 'CONTRIBUTING.md'
16+
workflow_dispatch:
17+
18+
jobs:
19+
check:
20+
uses: anolishq/.github/.github/workflows/docs-check.yml@main

.github/workflows/metrics.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Metrics
2+
3+
on:
4+
push:
5+
branches: [main]
6+
schedule:
7+
- cron: '0 6 * * 1' # Weekly Monday 6am UTC
8+
workflow_dispatch:
9+
10+
jobs:
11+
collect:
12+
uses: anolishq/.github/.github/workflows/metrics.yml@main

.markdownlint.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)