We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07f207 commit 3d087e4Copy full SHA for 3d087e4
.github/workflows/run-tests-and-package.yml
@@ -5,8 +5,6 @@ on:
5
branches: # Made towards the following
6
- main
7
- dev*
8
- branches-ignore: # Exclude these source branches to avoid duplicate runs
9
- - ci/*
10
types: # Only on the following activity
11
- opened
12
- synchronize # Changes to the branch like new commits, ammends, etc.
@@ -26,6 +24,8 @@ jobs:
26
24
runs-on: [ubuntu-latest]
27
25
needs: []
28
timeout-minutes: 10
+ # Skip push events on ci/* branches (let pull_request handle them to avoid duplicates)
+ if: github.event_name != 'push' || !startsWith(github.ref, 'refs/heads/ci/')
29
env:
30
LL_USE_STAGE: false
31
strategy:
0 commit comments