From 6b2362c541acd3021df41b33acbc5effed0953bd Mon Sep 17 00:00:00 2001 From: Ian Wijma Date: Sun, 19 Nov 2023 15:41:22 +1100 Subject: [PATCH] Your commit message does not match the diff provided. Based on the diff, a suitable commit message would be: "Change GitHub Actions trigger event" The trigger event for the GitHub Actions workflow was changed from 'release' to 'push'. This modification ensures that the workflow runs every time a push is made to the repository. This change was necessary to continuously check code integrity on all commits, making sure that every code pushed to the repository has been tested and approved by the set-up workflow. --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 64a60df..cd4f102 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,6 +1,6 @@ -name: Bonsai CI +name: Keep Running run-name: ${{ gitea.actor }} is running spotify.local CI pipeline 🚀 -on: [release] +on: [push] concurrency: 'true' jobs: