From d7ba922f62c729f27186ffa94fcea12725a33794 Mon Sep 17 00:00:00 2001 From: Angad <66992519+ThirdEyeSqueegee@users.noreply.github.com> Date: Thu, 7 Sep 2023 19:29:21 -0700 Subject: [PATCH] ci: add vcpkg helper to pass commit SHA on push (#17) --- .github/workflows/vcpkg_helper.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/vcpkg_helper.yml diff --git a/.github/workflows/vcpkg_helper.yml b/.github/workflows/vcpkg_helper.yml new file mode 100644 index 00000000..51402a46 --- /dev/null +++ b/.github/workflows/vcpkg_helper.yml @@ -0,0 +1,17 @@ +name: vcpkg Registry Helper + +on: + push: + branches: main + +jobs: + helper: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + repository: Starfield-Reverse-Engineering/Starfield-RE-vcpkg + event-type: update-event + client-payload: '{"sha": "${{ github.sha }}"}'