Skip to content

Bump github.com/spidernet-io/spiderpool from 0.6.0-rc2.0.20230720061313-b95dad857e30 to 0.7.0 #97

Bump github.com/spidernet-io/spiderpool from 0.6.0-rc2.0.20230720061313-b95dad857e30 to 0.7.0

Bump github.com/spidernet-io/spiderpool from 0.6.0-rc2.0.20230720061313-b95dad857e30 to 0.7.0 #97

Workflow file for this run

name: Auto MarkDown Lint
on:
push:
branches:
- main
- release-*
- github_pages
paths:
- '**.md'
pull_request:
branches:
- main
- release-*
- github_pages
paths:
- '**.md'
# checkout all markdown
workflow_dispatch:
inputs:
ref:
description: 'check all md for branch, sha, tag'
required: true
default: main
jobs:
markdown-link-check:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.tag }}
- name: Checkout
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: actions/checkout@v3
- name: markdownlint-cli
uses: nosborn/[email protected]
with:
files: .
config_file: '.github/markdownlint.yaml'
ignore_path: '.github/markdownlintignore'