From eed78338e6ac5cdcc60c824ea3b3457f4425d5fe Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sun, 13 Mar 2022 13:05:59 +0100 Subject: [PATCH] build: trigger builds of dev branches of repos in TinyGo ecosystem, e.g. Bluetooth, TinyFS, TinyFont, TinyDraw Signed-off-by: deadprogram --- .github/workflows/docker.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index c7e645bb..a4cf435d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -57,3 +57,27 @@ jobs: --header 'Content-Type: application/json' \ -d '{"branch": "dev"}' \ -u "${{ secrets.CIRCLECI_API_TOKEN }}" + - name: Trigger Bluetooth repo build on CircleCI + run: | + curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/bluetooth/pipeline' \ + --header 'Content-Type: application/json' \ + -d '{"branch": "dev"}' \ + -u "${{ secrets.CIRCLECI_API_TOKEN }}" + - name: Trigger TinyFS repo build on CircleCI + run: | + curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinyfs/pipeline' \ + --header 'Content-Type: application/json' \ + -d '{"branch": "dev"}' \ + -u "${{ secrets.CIRCLECI_API_TOKEN }}" + - name: Trigger TinyFont repo build on CircleCI + run: | + curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinyfont/pipeline' \ + --header 'Content-Type: application/json' \ + -d '{"branch": "dev"}' \ + -u "${{ secrets.CIRCLECI_API_TOKEN }}" + - name: Trigger TinyDraw repo build on CircleCI + run: | + curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinydraw/pipeline' \ + --header 'Content-Type: application/json' \ + -d '{"branch": "dev"}' \ + -u "${{ secrets.CIRCLECI_API_TOKEN }}"