From 3b2b73cb07046c2a5e58b05af972780653d9a560 Mon Sep 17 00:00:00 2001 From: eugene_matsyuk Date: Wed, 29 Jan 2025 14:10:15 +0300 Subject: [PATCH] ci: notification github flow was removed --- .github/workflows/notify.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/notify.yml diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml deleted file mode 100644 index 4f35a7e25..000000000 --- a/.github/workflows/notify.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: notify -on: - push: - branches: - - develop -jobs: - ci: - runs-on: ubuntu-22.04 - steps: - - name: notify - env: - SLUG: ${{ secrets.NOTIFY_INTERNAL_SLUG }} - WORKFLOW_ID: ${{ secrets.NOTIFY_INTERNAL_WORKFLOW_ID }} - TOKEN: ${{ secrets.NOTIFY_INTERNAL_TOKEN }} - run: | - curl -L \ - -X POST \ - -H "Accept: application/vnd.github+json" \ - -H "Authorization: Bearer $TOKEN" \ - -H "X-GitHub-Api-Version: 2022-11-28" \ - https://api.github.com/repos/$SLUG/actions/workflows/$WORKFLOW_ID/dispatches \ - -d '{"ref":"main","inputs":{"branch":"develop","sha":"${{ github.sha }}"}}'