We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6607130 commit c76705aCopy full SHA for c76705a
1 file changed
.github/workflows/Build-Kernel.yml
@@ -1,8 +1,8 @@
1
name: Build Kernel
2
3
on:
4
- # schedule:
5
- # - cron: '52 0 * * *'
+ schedule:
+ - cron: '52 */3 * * *'
6
workflow_dispatch:
7
inputs:
8
debug_enabled:
@@ -41,7 +41,7 @@ jobs:
41
echo "NEW KERNEL SOURCE!!!!"
42
echo "# KERNEL UPDATES" > $body
43
echo >> $body
44
- cat $body
+ echo $(wget -q https://api.github.com/repos/microsoft/WSL2-Linux-Kernel/releases/latest -O - | awk -F \" -v RS="," '/"body"/ {print $(NF-1)}') >> $body
45
fi
46
if [[ "$GITHUB_EVENT_NAME" == "workflow_dispatch" ]]; then
47
echo "NEW IMPROVEMENT!!!!"
0 commit comments