From 26d0994d3873750c31732c7b5313d52b2329045e Mon Sep 17 00:00:00 2001 From: Shota Nishihara Date: Fri, 7 Aug 2026 14:26:52 +0900 Subject: [PATCH 1/2] =?UTF-8?q?ci:=20=E4=B8=AD=E5=A4=AE=E3=83=86=E3=83=B3?= =?UTF-8?q?=E3=83=97=E3=83=AC=E3=81=AE=20markdown-lint=20caller=20?= =?UTF-8?q?=E3=82=92=E5=B0=8E=E5=85=A5=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- .github/workflows/md-lint.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/md-lint.yml diff --git a/.github/workflows/md-lint.yml b/.github/workflows/md-lint.yml new file mode 100644 index 0000000..d9591f8 --- /dev/null +++ b/.github/workflows/md-lint.yml @@ -0,0 +1,29 @@ +name: Markdown Lint + +# tomio2480/github-workflows v2 の composite action を呼び出す caller workflow. +# 参照は @ # 形式の 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 }} \ No newline at end of file From cb55d20f3d16d121ebcfc7b67f51c2945c2d757d Mon Sep 17 00:00:00 2001 From: Shota Nishihara Date: Fri, 7 Aug 2026 14:26:53 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20dependabot=20=E3=81=AB=20github-ac?= =?UTF-8?q?tions=20ecosystem=20=E3=82=92=E8=A8=AD=E5=AE=9A=E3=81=99?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f6ac61f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 \ No newline at end of file