From 84362ad05856c8af9a1bb1ba626b2990b7df538d Mon Sep 17 00:00:00 2001 From: Enrique Belarte Luque Date: Tue, 28 Jan 2025 11:25:58 +0100 Subject: [PATCH] Add scripts for matrix --- .github/workflows/kernel-list.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/kernel-list.yaml b/.github/workflows/kernel-list.yaml index d7631ca..f2a8f5b 100644 --- a/.github/workflows/kernel-list.yaml +++ b/.github/workflows/kernel-list.yaml @@ -18,3 +18,13 @@ jobs: pip install -r scripts/requirements.txt - name: Display kernel list run: python scripts/kernels.py + - name: Commit kernel list updates + run: | + git config --local user.name "actions-build-and-sign@github.com" + git add ./scripts + git commit -m "Updating the kernel version list" + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + force: true