From a2beb7510b5a1574b3314a6913a98606b894ef31 Mon Sep 17 00:00:00 2001 From: sciencewhiz Date: Sat, 29 Jun 2024 13:58:09 -0700 Subject: [PATCH] [ci] Add dispatch to tag PathWeaver and Shuffleboard (#6788) --- .github/workflows/gradle.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index c1b635c08e..af74b97252 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -255,6 +255,9 @@ jobs: dispatch: name: dispatch needs: [combine] + strategy: + matrix: + repo: ['SmartDashboard', 'PathWeaver', 'Shuffleboard'] runs-on: ubuntu-22.04 steps: - uses: peter-evans/repository-dispatch@v3 @@ -263,6 +266,6 @@ jobs: startsWith(github.ref, 'refs/tags/v') with: token: ${{ secrets.TOOL_REPO_ACCESS_TOKEN }} - repository: wpilibsuite/smartdashboard + repository: wpilibsuite/${{ matrix.repo }} event-type: tag client-payload: '{"package_name": "allwpilib", "package_version": "${{ github.ref_name }}"}'