diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml index 839e78b..1f83eb0 100644 --- a/.github/workflows/docs-ci.yml +++ b/.github/workflows/docs-ci.yml @@ -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 diff --git a/.github/workflows/generate-trust-artifacts.yml b/.github/workflows/generate-trust-artifacts.yml index 00334e2..d932761 100644 --- a/.github/workflows/generate-trust-artifacts.yml +++ b/.github/workflows/generate-trust-artifacts.yml @@ -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: diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 0000000..1dd8622 --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,6 @@ +{ + "default": true, + "MD013": false, + "MD033": false, + "MD041": false +}