You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
name: Trigger CI |
|
on: push |
|
|
|
jobs: |
|
build: |
|
name: Dispatch to main repo |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Emit repository_dispatch |
|
uses: mvasigh/dispatch-action@main |
|
with: |
|
# You should create a personal access token and store it in your repository |
|
token: ${{ secrets.DISPATCH_AUTH }} |
|
repo: dev |
|
owner: codemirror |
|
event_type: push
|
|
|