mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 05:40:11 +01:00
* Add action for starting integration tests * Configure nginx to resolve DNS record * Sync itest.yml and docs/scripts/Readme.md resolve #100
20 lines
430 B
YAML
20 lines
430 B
YAML
name: generate-markdown
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "build-scripts"
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
jobs:
|
|
auto-update-readme:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Markdown autodocs
|
|
uses: dineshsonachalam/markdown-autodocs@v1.0.4
|
|
with:
|
|
output_file_paths: '[./README.md, ./docs/*.md]'
|