change on fields

This commit is contained in:
Denis Angell
2025-03-28 11:44:22 +01:00
parent 245cf4a676
commit 5eac2d3e44
6 changed files with 11 additions and 26 deletions

View File

@@ -2,7 +2,9 @@ name: Nix - GA Runner
on:
push:
branches-ignore: ["dev", "candidate", "release"]
branches: ["dev", "candidate", "release"]
pull_request:
branches: ["dev", "candidate", "release"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@@ -23,4 +25,4 @@ jobs:
echo "Warning: suspicious_patterns.sh not found, skipping check"
# Still exit with success for compatibility with dependent jobs
exit 0
fi
fi

View File

@@ -2,7 +2,9 @@ name: MacOS - GA Runner
on:
push:
branches-ignore: ["dev", "candidate", "release"]
branches: ["dev", "candidate", "release"]
pull_request:
branches: ["dev", "candidate", "release"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@@ -2,7 +2,9 @@ name: Nix - GA Runner
on:
push:
branches-ignore: ["dev", "candidate", "release"]
branches: ["dev", "candidate", "release"]
pull_request:
branches: ["dev", "candidate", "release"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@@ -32,19 +32,9 @@ jobs:
clean: true
fetch-depth: 2 # Only get the last 2 commits, to avoid fetching all history
checkpatterns:
runs-on: [self-hosted, vanity]
needs: checkout
defaults:
run:
working-directory: ${{ needs.checkout.outputs.checkout_path }}
steps:
- name: Check for suspicious patterns
run: /bin/bash suspicious_patterns.sh
build:
runs-on: [self-hosted, vanity]
needs: [checkpatterns, checkout]
needs: [checkout]
defaults:
run:
working-directory: ${{ needs.checkout.outputs.checkout_path }}