Skip to content

Commit ed23558

Browse files
authored
Merge pull request #1209 from kernelkit/confd-refactor-callbacks
Major refactor of how sysrepo callbacks is used in confd Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2 parents 75c2520 + a280960 commit ed23558

23 files changed

+786
-721
lines changed

.github/workflows/check-kernel-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- name: Fetch kernel.org and check for 6.12 release
2626
id: check
2727
run: |
28+
set -e -o pipefail
2829
# Fetch the kernel.org frontpage and extract 6.12 version
2930
CURRENT_VERSION=$(curl -s https://www.kernel.org/ | grep -oP '6\.12\.\d+' | head -n1)
3031
@@ -56,6 +57,7 @@ jobs:
5657
- name: Set up git credentials
5758
if: steps.check.outputs.new_release == 'true'
5859
run: |
60+
set -e -o pipefail
5961
git config --global user.email "ael-bot@users.noreply.github.com"
6062
git config --global user.name "ael-bot"
6163
@@ -68,6 +70,7 @@ jobs:
6870
env:
6971
GIT_TERMINAL_PROMPT: 0
7072
run: |
73+
set -e -o pipefail
7174
./utils/kernel-upgrade.sh linux
7275
7376
- name: Create pull request

0 commit comments

Comments
 (0)