Skip to content
Closed
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
8 changes: 1 addition & 7 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,7 @@ 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
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
6 changes: 6 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
}
Loading