Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
29 changes: 29 additions & 0 deletions .github/workflows/md-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Markdown Lint

# tomio2480/github-workflows v2 の composite action を呼び出す caller workflow.
# 参照は @<SHA> # <version> 形式の SHA pin で,Dependabot が更新 PR を起票する.
# 設定の上書きが必要な場合はリポジトリルートに以下のいずれかを置けば優先される:
# .markdownlint-cli2.yaml / .textlintrc.json / prh.yml / .textlintignore
# 詳細は https://github.com/tomio2480/github-workflows の README を参照.

on:
pull_request:
paths:
- "**/*.md"

permissions:
contents: read
pull-requests: write

jobs:
lint:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Markdown Lint via composite action
uses: tomio2480/github-workflows/.github/actions/markdown-lint@20a93b5ca42235c26c13e742ccfcdee2ac999b99 # v2.6.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Loading