From e9172cc8cc0f010556f05bb83e574cdb7c7e4e31 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Wed, 22 Oct 2025 03:54:36 +0300 Subject: [PATCH] Update format.yml --- .github/workflows/format.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 279ca906..d1ad75ea 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -24,11 +24,6 @@ jobs: with: node-version: 22 cache: 'npm' - - name: Setup .npmrc for GitHub Packages - run: | - echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc - echo "@iptv-org:registry=https://npm.pkg.github.com/" >> .npmrc - echo "always-auth=true" >> .npmrc - name: Install dependencies run: npm install - name: Format *.channels.xml files @@ -38,7 +33,7 @@ jobs: run: | git fetch origin master:master CHANNELS_ANY_CHANGED=false - CHANNELS_ALL_CHANGED_FILES=$(git diff --name-only master -- sites/**/*.channels.xml | tr '\n' ' ') + CHANNELS_ALL_CHANGED_FILES=$(git diff --diff-filter=ACMRT --name-only master -- sites/**/*.channels.xml | tr '\n' ' ') if [ -n "${CHANNELS_ALL_CHANGED_FILES}" ]; then CHANNELS_ANY_CHANGED=true fi