mirror of
https://github.com/Lissy93/dashy.git
synced 2026-07-31 03:26:10 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
667 B
YAML
26 lines
667 B
YAML
# Uses the contents of the ./docs directory for Dashy's GH Wiki page
|
|
name: 📊 Wiki Sync
|
|
on:
|
|
workflow_dispatch: # Manual dispatch
|
|
schedule:
|
|
- cron: '0 1 * * 0' # At 01:00 on Sunday.
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-wiki:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
- name: Upload Docs to GH Wiki
|
|
uses: docker://decathlon/wiki-page-creator-action:2.0.3
|
|
env:
|
|
GH_PAT: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
ACTION_MAIL: alicia-gh-bot@mail.as93.net
|
|
ACTION_NAME: liss-bot
|
|
OWNER: Lissy93
|
|
REPO_NAME: Dashy
|
|
MD_FOLDER: docs/
|