From 69de01e9b3b81cb1826707de6331cf8818bc44a3 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 23 Feb 2025 10:11:07 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Update=20main=20workflow=20?= =?UTF-8?q?configuration=20with=20new=20trigger=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - This commit updates the main workflow configuration to include a new trigger option, allowing the build job to be triggered by manual workflow. --- .gitea/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b70cb45..edabc88 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,12 +1,13 @@ name: CC2530 Zigbee Firmware Build on: - push: - branches: - - main # Triggers the action when code is pushed to the main branch - pull_request: - branches: - - main # Triggers the action for pull requests targeting the main branch + workflow_dispatch: + # push: + # branches: + # - main # Triggers the action when code is pushed to the main branch + # pull_request: + # branches: + # - main # Triggers the action for pull requests targeting the main branch jobs: build: