Skip to content

Commit 618a97e

Browse files
jathuHaiting Pu
authored andcommitted
Create skeleton for a build preset GitHub workflow (#10724)
### Summary As part of #10715, this creates the foundation for a dedicated workflow to test build presets. ### Test plan Workflows need to be committed to main first, before it can be run.
1 parent 988b133 commit 618a97e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build-presets.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Build Presets
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
- release/*
9+
workflow_dispatch:
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }}
13+
cancel-in-progress: true

0 commit comments

Comments
 (0)