mirror of https://github.com/rwf2/Rocket.git
19 lines
489 B
YAML
19 lines
489 B
YAML
name: Trigger
|
|
on: [push]
|
|
jobs:
|
|
trigger:
|
|
name: api.rocket.rs
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'rwf2/Rocket'
|
|
steps:
|
|
- uses: actions/github-script@v7
|
|
with:
|
|
github-token: ${{ secrets.API_DOCS_DEPLOY_TOKEN }}
|
|
script: |
|
|
github.rest.actions.createWorkflowDispatch({
|
|
owner: 'rwf2',
|
|
repo: 'api.rocket.rs',
|
|
workflow_id: 'deploy.yaml',
|
|
ref: 'master'
|
|
})
|