From 82fa14d362ca49f5817fbe81fd1a6097499d3b68 Mon Sep 17 00:00:00 2001 From: s3-odara Date: Wed, 4 Dec 2024 21:37:10 +0900 Subject: [PATCH] =?UTF-8?q?lint:=20=E3=83=AF=E3=83=BC=E3=82=AF=E3=83=95?= =?UTF-8?q?=E3=83=AD=E3=83=BC=E3=81=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ベースブランチの最新コミットをフェッチ、比較対象をプルリクエスト先baseブランチの最新コミットshaで指定する、withを使用してaction-textlintに変数を渡す。 --- .github/workflows/lint.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cb38ae2..0b37b77 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,14 +11,22 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: + # プルリクエスト元リポジトリからプルリクエスト作成時のプルリクエスト先baseブランチの最新コミットを取得 + - uses: actions/checkout@v4 + with: + repository: ${{ github.event.pull_request.head.repo.full_name }} + ref: ${{ github.event.pull_request.base.sha }} + # プルリクエスト元リポジトリからプルリクエスト用ブランチの最新コミットを取得して上書き - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.head_ref }} + # プルリクエスト作成時のプルリクエスト先baseブランチの最新コミットとプルリクエスト先headブランチの最新コミットを比較 - name: modified files run: | - modified_files=$(git diff --name-only --diff-filter=AM origin/${{ github.base_ref }..origin${{ github.head_ref }} | tr '\n' ' ') + modified_files=$(git diff --name-only --diff-filter=AM ${{ github.event.pull_request.base.sha }}..origin/${{ github.head_ref }} | tr '\n' ' ') echo "textlint_flags=$modified_files" >> $GITHUB_ENV - uses: tsuyoshicho/action-textlint@v3 with: fail_on_error: true + textlint_flags: ${{ env.textlint_flags }}