From 7301dd07803f88d4a5f0809b7d127bc6a180cacd Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Fri, 20 Jun 2025 09:57:11 -0700 Subject: [PATCH] CI: only lint on PRs. --- .github/workflows/sub_prepare.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sub_prepare.yml b/.github/workflows/sub_prepare.yml index f7ea5e68a3..45c97a16b8 100644 --- a/.github/workflows/sub_prepare.yml +++ b/.github/workflows/sub_prepare.yml @@ -146,7 +146,7 @@ jobs: commitCnt=$(jq -re '.ahead_by' ${{ env.logdir }}compare.json) echo "Changeset is composed of $commitCnt commit(s)" | tee -a ${{env.reportdir}}${{ env.reportfilename }} - name: Get files modified in changeset #TODO check what happens with deleted file in the subsequent process - if: env.isPR == 'true' || env.isPush == 'true' + if: env.isPR == 'true' env: API_URL: ${{ github.api_url }} TOKEN: ${{ github.token }}