fix: prevent autofix workflow loop from bot commits (#10673)

fix(ci): prevent autofix workflow loop from bot commits
This commit is contained in:
Himavarsha
2025-11-20 14:50:05 -05:00
committed by GitHub
parent 803745b932
commit 6c802fbf7b
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,7 @@ env:
NODE_VERSION: "22"
jobs:
autofix:
if: ${{ github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code

View File

@ -12,6 +12,7 @@ env:
jobs:
lint:
name: Run Ruff Check and Format
if: ${{ github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
@ -29,6 +30,7 @@ jobs:
update-starter-projects:
name: Update Starter Projects
if: ${{ github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
@ -53,6 +55,7 @@ jobs:
update-component-index:
name: Update Component Index
if: ${{ github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5