Skip to content

added dir for teapot.service to the spec file #748

added dir for teapot.service to the spec file

added dir for teapot.service to the spec file #748

Workflow file for this run

---
name: Check links
on:
push:
pull_request:
jobs:
markdown-link-check:
name: Check links using markdown-link-check
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on PR
# ref: ${{ github.event.pull_request.head.sha }}
# Full git history needed to get proper list of changed files
fetch-depth: 0
- name: Check links on new changes
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: ".github/linters/mlc_config.json"
check-modified-files-only: "yes"
use-quiet-mode: "yes"
use-verbose-mode: "yes"
base-branch: "main"