-
Notifications
You must be signed in to change notification settings - Fork 24
46 lines (41 loc) · 1.1 KB
/
agent-corpus.yml
File metadata and controls
46 lines (41 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Agent Reference Corpus
on:
push:
branches: [main, feature/agent-skills]
paths:
- 'AGENTS.md'
- '.agents/**'
- 'docs/agent-reference/**'
- 'samples/**'
- 'templates/**'
- 'tools/Build-SamplesIndex.ps1'
- 'tools/Test-AgentLinks.ps1'
- '.github/workflows/agent-corpus.yml'
pull_request:
branches: [main]
paths:
- 'AGENTS.md'
- '.agents/**'
- 'docs/agent-reference/**'
- 'samples/**'
- 'templates/**'
- 'tools/Build-SamplesIndex.ps1'
- 'tools/Test-AgentLinks.ps1'
- '.github/workflows/agent-corpus.yml'
jobs:
link-validity:
name: Agent link validity
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate agent-facing relative links
shell: pwsh
run: ./tools/Test-AgentLinks.ps1
samples-index-freshness:
name: Samples index freshness
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify samples-index.md is up to date
shell: pwsh
run: ./tools/Build-SamplesIndex.ps1 -CheckOnly