Skip to content

Commit

Permalink
chore: add repository dispatch workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirdEyeSqueegee committed Oct 2, 2024
1 parent d136014 commit 7223af5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/send_repository_dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Send repository dispatch to Starfield-Reverse-Engineering/CommonLibSF-vcpkg

on:
push:
branches: main
paths:
- "include/**"
- "src/**"
- "cmake/**"
- "CMakeLists.txt"
- "CMakePresets.json"
workflow_dispatch:

concurrency:
group: send-repository-dispatch
cancel-in-progress: true

jobs:
send-repository-dispatch:
runs-on: ubuntu-latest

steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }}
repository: Starfield-Reverse-Engineering/CommonLibSF-vcpkg
event-type: update-clib-port-event

0 comments on commit 7223af5

Please sign in to comment.