Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,27 @@ jobs:
uses: DavidAnson/markdownlint-cli2-action@v16
with:
globs: "**/*.md"
config: |
{
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
}
config: ".markdownlint-cli2.jsonc"

check-links:
name: Check Documentation Links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lychee link checker
# Excluded URLs resolve correctly for humans but reject automated checks,
# so they are false positives for the link checker:
# - @wasmagent/protocol is published (npm registry returns 200) but
# npmjs.com returns 403 to non-browser user agents.
# - WasmAgent/wasmagent-ops is a private repository, so GitHub returns
# 404 to unauthenticated requests.
uses: lycheeverse/lychee-action@v2
with:
args: |
--verbose
--no-progress
--exclude-mail
--exclude "https://www.npmjs.com/package/@wasmagent/protocol"
--exclude "https://github.com/WasmAgent/wasmagent-ops"
docs/
README.md
**/*.md
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/generate-trust-artifacts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
name: Generate Trust Artifacts

on:
workflow_call:
inputs:
release_tag:
description: 'Release tag to generate artifacts for'
required: true
type: string
trace_file:
description: 'Path to trace file (for AgentBOM generation)'
required: false
type: string
aep_file:
description: 'Path to AEP events file (for Trust Passport generation)'
required: false
type: string
release:
types: [created, published]
workflow_dispatch:
Expand Down
16 changes: 16 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"config": {
"default": true,
"MD013": false,
"MD033": false,
"MD041": false,
"MD032": false,
"MD022": false,
"MD040": false,
"MD049": false,
"MD037": false,
"MD036": false,
"MD012": false,
"MD004": false
}
}
Loading