Skip to content

droidspaces: bump v6.3.0 #17

droidspaces: bump v6.3.0

droidspaces: bump v6.3.0 #17

Workflow file for this run

name: Dispatch Docs Update
on:
push:
branches: [main]
paths:
- 'Documentation/**'
jobs:
dispatch:
name: Create dispatch event
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.WEBPAT }}
script: |
await github.rest.repos.createDispatchEvent({
owner: 'droidspaces',
repo: 'droidspaces.github.io',
event_type: 'docs-updated',
client_payload: {
ref: context.ref,
sha: context.sha
}
});