diff --git a/.github/workflows/repository_dispatch_on_merge.yml b/.github/workflows/repository_dispatch_on_merge.yml
deleted file mode 100644
index 4f94f0b..0000000
--- a/.github/workflows/repository_dispatch_on_merge.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-name: Dispatch to repo
-on:
-  push:
-    branches:
-      - main
-  workflow_dispatch:
-jobs:
-  dispatch:
-    runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        repo: ["equinor/robotics-deployment"]
-    steps:
-      - name: Push to repo
-        uses: peter-evans/repository-dispatch@v2.0.0
-        with:
-          token: ${{ secrets.PAT }}
-          repository: ${{ matrix.repo }}
-          event-type: update
-          client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "module": "isar-turtlebot", "branch": "main"}'