From a65ac105cc8bc0be841ae5356b68ef7e3e5f1956 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Wed, 17 Dec 2025 11:34:38 +0100 Subject: [PATCH] build: remove post-build triggers for associated repos like drivers. Now that the drivers repo and friends are intended to target the most recent release version of TinyGo instead of the development version, this trigger does not serve any puppose to trigger a build that will have already been tested. Signed-off-by: deadprogram --- .github/workflows/docker.yml | 42 ------------------------------------ 1 file changed, 42 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 29463adcd..18fd5127d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -66,45 +66,3 @@ jobs: labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max - - name: Trigger Drivers repo build on Github Actions - run: | - curl -X POST \ - -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/tinygo-org/drivers/actions/workflows/build.yml/dispatches \ - -d '{"ref": "dev"}' - - name: Trigger Bluetooth repo build on Github Actions - run: | - curl -X POST \ - -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/tinygo-org/bluetooth/actions/workflows/linux.yml/dispatches \ - -d '{"ref": "dev"}' - - name: Trigger TinyFS repo build on Github Actions - run: | - curl -X POST \ - -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/tinygo-org/tinyfs/actions/workflows/build.yml/dispatches \ - -d '{"ref": "dev"}' - - name: Trigger TinyFont repo build on Github Actions - run: | - curl -X POST \ - -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/tinygo-org/tinyfont/actions/workflows/build.yml/dispatches \ - -d '{"ref": "dev"}' - - name: Trigger TinyDraw repo build on Github Actions - run: | - curl -X POST \ - -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/tinygo-org/tinydraw/actions/workflows/build.yml/dispatches \ - -d '{"ref": "dev"}' - - name: Trigger TinyTerm repo build on Github Actions - run: | - curl -X POST \ - -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/tinygo-org/tinyterm/actions/workflows/build.yml/dispatches \ - -d '{"ref": "dev"}'