mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 11:13:10 +08:00
fix: prevent autofix workflow loop from bot commits (#10673)
fix(ci): prevent autofix workflow loop from bot commits
This commit is contained in:
1
.github/workflows/js_autofix.yml
vendored
1
.github/workflows/js_autofix.yml
vendored
@ -12,6 +12,7 @@ env:
|
||||
NODE_VERSION: "22"
|
||||
jobs:
|
||||
autofix:
|
||||
if: ${{ github.actor != 'github-actions[bot]' }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
||||
3
.github/workflows/py_autofix.yml
vendored
3
.github/workflows/py_autofix.yml
vendored
@ -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
|
||||
|
||||
Reference in New Issue
Block a user