diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2023-01-20 15:13:21 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-01-20 15:14:53 +0100 |
commit | 6ca347379ab548b886723b754c70807de3be3538 (patch) | |
tree | 655a0935101cd37c17e3b1f19ddb5ac49edd0d2e | |
parent | 5dee5965012e788f06e4d095e8cfb73200d818cb (diff) | |
download | upstream-6ca347379ab548b886723b754c70807de3be3538.tar.gz upstream-6ca347379ab548b886723b754c70807de3be3538.tar.bz2 upstream-6ca347379ab548b886723b754c70807de3be3538.zip |
CI: kernel: enable target testing also for pull request event
Testing target changes was only set for push events. Enable this also
for pull request events to enable testing pr making specific target
changes.
Fixes: 57a02cbbff5b ("CI: kernel: test each target with additional changes than target/linux")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
-rw-r--r-- | .github/workflows/kernel.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 2582a594ba..6a94e79779 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -8,7 +8,7 @@ on: - '.github/workflows/kernel.yml' - 'include/kernel*' - 'package/kernel/**' - - 'target/linux/generic/**' + - 'target/linux/**' push: paths: - '.github/workflows/check-kernel-patches.yml' |