Nightly Documentation Update #498
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Documentation Update | |
on: | |
workflow_dispatch: | |
schedule: | |
# * is a special character in YAML so quote this string | |
- cron: '30 3 * * *' | |
jobs: | |
# Run the common workflow on each pull request | |
Nightly_Documentation_Update: | |
uses: 51Degrees/common-ci/.github/workflows/nightly-documentation-update.yml@main | |
with: | |
repo-name: ${{ github.event.repository.name }} | |
org-name: ${{ github.event.repository.owner.login }} | |
secrets: | |
token: ${{ secrets.ACCESS_TOKEN }} |