Files
ansible_role_proxmox_provision/.gitea/workflows/markdown-lint.yml
Jose 18e0ed96ea
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 11s
Gitleaks Scan / gitleaks (push) Successful in 4s
Markdown Lint / markdown-lint (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 14s
PR check / Gitleaks (pull_request) Successful in 4s
PR check / lint tests (pull_request) Successful in 13s
PR check / handle_failures (pull_request) Has been skipped
PR check / handle_success (pull_request) Successful in 2s
refactor ♻️: Refactor event triggers for workflows
Updated the `ansible-lint` and `markdown-lint` workflows by adding new event types (`opened`) to their issue triggers.
2026-02-14 11:09:55 +01:00

28 lines
516 B
YAML

---
# .gitea/workflows/markdown-lint.yml
name: Markdown Lint
on:
push:
issues:
types: [opened]
jobs:
build:
name: markdown-lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
github-server-url: ${{ vars.GIT_SERVER_URL }}
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Run markdownlint
run: npx markdownlint-cli2 "**/*.md" "#node_modules"