Add workflow for weekly update checks
This change adds a workflow that will check weekly whether a new release is available for the current actively maintained Linux stable branches.
This commit is contained in:
parent
1dc101c237
commit
ed0d145cdc
2 changed files with 61 additions and 0 deletions
10
scripts/check.sh
Executable file
10
scripts/check.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#1/bin/bash
|
||||
# Script to check for new kernel release
|
||||
set -e
|
||||
set -o pipefail
|
||||
|
||||
MAJOR=$(echo $1 | sed -e "s/^v//" -e "s/\.[^.]*$//")
|
||||
CURRENT=$(scripts/version.sh -L)
|
||||
NEW=$(curl -s https://www.kernel.org/releases.json | jq -r ".releases[]|select(.version | startswith(\"$MAJOR\")) | .version")
|
||||
|
||||
[[ "$CURRENT" = "$NEW" ]] || echo $NEW
|
Loading…
Add table
Add a link
Reference in a new issue