From 4c61fc7dda92f812464c83704664bbcec6da128d Mon Sep 17 00:00:00 2001 From: ember Date: Tue, 17 Mar 2026 08:49:38 +0000 Subject: [PATCH] Add fluffychat-trigger.yaml --- fluffychat-trigger.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 fluffychat-trigger.yaml diff --git a/fluffychat-trigger.yaml b/fluffychat-trigger.yaml new file mode 100644 index 0000000..879c8d0 --- /dev/null +++ b/fluffychat-trigger.yaml @@ -0,0 +1,18 @@ +name: Trigger FluffyChat CI Pipeline + +on: + push: + branches: + - main + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Trigger build in ci-pipelines repo + run: | + curl -s -X POST \ + "http://forgejo.tooling.svc.cluster.local:3000/api/v1/repos/ember/ci-pipelines/dispatches" \ + -H "Authorization: token ${{ secrets.CI_DISPATCH_TOKEN }}" \ + -H "Content-Type: application/json" \ + -d '{"event_type": "fluffychat-push", "client_payload": {"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}}'