Bump OpenTelemetry.Instrumentation.Http from 1.0.0-rc9.3 to 1.8.1 in /burstsvc/burst #62
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: Markdown lint and link check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Sequence of patterns matched against refs/heads | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
jobs: | |
markdown-linter: | |
name: Markdown lint and link check | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v2 | |
- name: Run Markdown Lint | |
uses: actionshub/markdownlint@main | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
name: Markdown Link check | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: '.github/workflows/mlc_config.json' | |
check-modified-files-only: 'yes' | |
base-branch: 'main' | |