From 89596a4d871ddbff7846e5af6de657a55460ade5 Mon Sep 17 00:00:00 2001 From: Andres Contreras Date: Tue, 10 Feb 2026 21:58:50 +0100 Subject: [PATCH 1/3] ci: add workflow_dispatch trigger and secrets inherit --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12f534b..20b5b11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,8 +4,15 @@ on: branches: [develop] pull_request: branches: [develop, main] + workflow_dispatch: + inputs: + triggered-by: + description: 'Orchestrator run ID' + required: false + type: string jobs: build-and-test: uses: fireflyframework/.github/.github/workflows/go-ci.yml@main with: go-version: '1.25' + secrets: inherit From 1387a957649b8806bb0150051cdd5bd6f541821d Mon Sep 17 00:00:00 2001 From: Andres Contreras Date: Tue, 10 Feb 2026 21:58:51 +0100 Subject: [PATCH 2/3] ci: add workflow_dispatch trigger and secrets inherit --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ce14d1..8b2c105 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,6 +2,12 @@ name: Release on: push: tags: ['v*'] + workflow_dispatch: + inputs: + triggered-by: + description: 'Orchestrator run ID' + required: false + type: string jobs: release: uses: fireflyframework/.github/.github/workflows/go-release.yml@main @@ -10,3 +16,4 @@ jobs: binary-name: flywork permissions: contents: write + secrets: inherit From 8464b62d5835fa0871850ec2de3dd9e45617d36b Mon Sep 17 00:00:00 2001 From: Andres Contreras Date: Tue, 10 Feb 2026 22:00:34 +0100 Subject: [PATCH 3/3] docs: add CI badge to README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ad0f9e..1307894 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # Firefly Framework CLI + +[![CI](https://github.com/fireflyframework/fireflyframework-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/fireflyframework/fireflyframework-cli/actions/workflows/ci.yml) [![Go](https://img.shields.io/badge/Go-1.25+-00ADD8?logo=go&logoColor=white)](https://go.dev) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) @@ -474,4 +476,4 @@ fireflyframework-cli/ Copyright 2024-2026 Firefly Software Solutions Inc. -Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details. +Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details. \ No newline at end of file