Skip to content

Commit 9591ada

Browse files
committed
github actions: Trigger kernelCI on pull request as well
Since we now have a separate trigger for it, this has been renamed to match that. For the case where a PR was automatically created and there is been an update on the branch, both push and pr_request events are triggered. Only one is needed, therefore the second is automatically cancelled. Signed-off-by: Roxana Nicolescu <rnicolescu@ciq.com>
1 parent 06107d0 commit 9591ada

2 files changed

Lines changed: 19 additions & 11 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Automated kernel build and test x86_64 and aarch64
2+
3+
on:
4+
push:
5+
branches:
6+
- '*_ciqlts9_6'
7+
pull_request:
8+
branches:
9+
- '**'
10+
- '!mainline'
11+
12+
concurrency:
13+
group: kernel-ci-${{ github.event.pull_request.head.ref || github.ref_name }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
kernelCI:
18+
uses: ctrliq/kernel-src-tree/.github/workflows/kernel-build-and-test-multiarch-trigger.yml@main
19+
secrets: inherit

.github/workflows/kernel-build-and-test-multiarch.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)