Files
APIVisualExecutor/.github/workflows/sync-docs.yml
Ankitkumar Satapara 21aaef6776 Add project files.
2026-04-17 22:31:58 +05:30

23 lines
430 B
YAML

name: Documentation
on:
push:
branches:
- master
paths:
- "docs/**"
workflow_dispatch:
jobs:
job-sync-docs-to-wiki:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Sync docs to wiki
uses: newrelic/wiki-sync-action@main
with:
source: docs
destination: wiki
token: ${{ secrets.DOCS_TOKEN }}