From f7e3b4dbe02b7dc2c131787ef173f20040554d25 Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Thu, 12 Feb 2026 14:35:23 -0500 Subject: [PATCH] chore: remove downstream sync --- .github/workflows/notify-downstream.yml | 33 ------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/notify-downstream.yml diff --git a/.github/workflows/notify-downstream.yml b/.github/workflows/notify-downstream.yml deleted file mode 100644 index fa7b2f14e..000000000 --- a/.github/workflows/notify-downstream.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Notify Downstream - -on: - push: - branches: - - main - -permissions: - contents: read - -jobs: - notify-downstream: - runs-on: ubuntu-latest - - steps: - - name: Generate GitHub App token - id: app-token - uses: tibdex/github-app-token@v2 - with: - app_id: ${{ secrets.OSS_SYNC_APP_ID }} - private_key: ${{ secrets.OSS_SYNC_APP_PRIVATE_KEY }} - - - name: Notify Repo B - uses: peter-evans/repository-dispatch@v3 - with: - token: ${{ steps.app-token.outputs.token }} - repository: ${{ secrets.OSS_SYNC_DOWNSTREAM_REPO }} - event-type: upstream-commit - client-payload: | - { - "commit_sha": "${{ github.sha }}" - } -