Skip to content

Update SECURITY.md with contact information and clarifications #7

Update SECURITY.md with contact information and clarifications

Update SECURITY.md with contact information and clarifications #7

Workflow file for this run

name: Documentation Check
on:
push:
branches: [main, master]
paths:
- 'docs/**'
- '*.md'
- 'README*.md'
- 'CONTRIBUTING.md'
pull_request:
branches: [main, master]
paths:
- 'docs/**'
- '*.md'
- 'README*.md'
- 'CONTRIBUTING.md'
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check broken links
uses: lycheeverse/lychee-action@v1
with:
args: '--accept 200,403,429 --exclude-mail --exclude-private --exclude-loopback --exclude-file .lycheeignore **/*.md'
fail: true