diff --git a/.github/workflows/maintenance.yml b/.github/workflows/maintenance.yml index 007f4b46..d9f5ce34 100644 --- a/.github/workflows/maintenance.yml +++ b/.github/workflows/maintenance.yml @@ -42,3 +42,11 @@ jobs: message: "ci: maintenance `${{ steps.versioning.outputs.VCPKG_VERSION }}`" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ secrets.VCPKG_HELPER_TOKEN }} + repository: Starfield-Reverse-Engineering/Starfield-RE-vcpkg + event-type: update-event + client-payload: '{"sha": "${{ github.sha }}"}' diff --git a/.github/workflows/vcpkg_helper.yml b/.github/workflows/vcpkg_helper.yml deleted file mode 100644 index 1707f400..00000000 --- a/.github/workflows/vcpkg_helper.yml +++ /dev/null @@ -1,17 +0,0 @@ -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.VCPKG_HELPER_TOKEN }} - repository: Starfield-Reverse-Engineering/Starfield-RE-vcpkg - event-type: update-event - client-payload: '{"sha": "${{ github.sha }}"}'