From 54973261e37e54f2406578656d70e31716bb1d25 Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Tue, 25 Jun 2024 14:37:33 +0200 Subject: [PATCH] ci(trigger): Add manual --- .gitea/workflows/builder.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/builder.yaml b/.gitea/workflows/builder.yaml index 04e5271..7293c6d 100644 --- a/.gitea/workflows/builder.yaml +++ b/.gitea/workflows/builder.yaml @@ -3,6 +3,7 @@ on: workflow_dispatch: release: types: [released] + issue_comment: jobs: @@ -10,6 +11,8 @@ jobs: container: image: debian:latest runs-on: [arm64] + # For manual trigger via Gitea while they implement the workflow_dispatch + if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run x86' || github.event.comment.body == '!actions run all' }} steps: - name: Create ISO @@ -40,6 +43,8 @@ jobs: container: image: debian:latest runs-on: [arm64] + # For manual trigger via Gitea while they implement the workflow_dispatch + if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run arm' || github.event.comment.body == '!actions run all' }} steps: - name: Create ISO