mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2026-03-30 14:15:51 +00:00
24 lines
590 B
YAML
24 lines
590 B
YAML
name: Trigger docs rebuild
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
files:
|
|
- 'CODE_OF_CONDUCT.md'
|
|
|
|
jobs:
|
|
trigger_docs_rebuild:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger docs rebuild
|
|
uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
|
script: |
|
|
const result = await github.rest.actions.createWorkflowDispatch({
|
|
owner: 'spacebarchat',
|
|
repo: 'docs',
|
|
workflow_id: 'build.yml',
|
|
ref: 'master'
|
|
})
|
|
console.log(result) |