feat: Set metricpipeline status based on alerts #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Docu Checks | |
on: | |
pull_request: | |
branches: | |
- "main" | |
- "release-*" | |
workflow_dispatch: | |
jobs: | |
verify-manifests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: "./.github/template/setup-golang" | |
- name: Verify manifests | |
run: make lint-manifests | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Validate links | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: '.mlc.config.json' | |
folder-path: '.' | |
max-depth: -1 | |
base-branch: ${{ github.base_ref }} |