Skip to content

kernel

kernel #9

Workflow file for this run

permissions:
contents: read
on:
push:
branches: [kernel]
schedule:
- cron: '7 7 * * *'
name: kernel
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: kernel
path: pin-init
- run: git clone --depth 1 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
- run: |
cp -r linux/rust/pin-init .
cd pin-init
if ! git diff --quiet ; then
git diff
false
fi
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
git status
false
fi