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"}'