Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
gardito-git committed Jul 18, 2024
1 parent d324e17 commit d0c85c2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Send repository dispatch event

on:
push:
branches:
- main
workflow_dispatch:

jobs:
trigger-event:
runs-on: ubuntu-latest
steps:
- name: Fire event
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer 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" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/gardito-git/target/dispatches \
-d '{"event_type":"dispatch-event"}'

0 comments on commit d0c85c2

Please sign in to comment.