Skip to content

Commit c569f91

Browse files
committed
Remove pull_request trigger from generate-bp workflow
This commit removes the `pull_request` trigger from the `generate-bp.yml` workflow. This change was made to reduce the amount of time and resources spent on building baseline profiles, as it is only necessary to build them for pushes on the `main` branch.
1 parent ac8bf52 commit c569f91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/generate-bp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Generate Baseline Profiles
22

33
on:
4+
# We ONLY want to build baseline profiles for pushes on main.
5+
# Do not trigger on "pull_request" because it takes too much time and resources.
46
push:
57
branches: [ main ]
6-
pull_request:
7-
branches: [ main ]
88
workflow_dispatch:
99

1010
concurrency:

0 commit comments

Comments
 (0)