1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 14:51:04 +02:00
ironbar/.github/workflows/wiki.yml
Jake Stanger 4aff6bcbbc
ci: restrict trigger paths
this should hopefully reduce unnecessary job runs
2025-04-16 23:39:30 +01:00

19 lines
301 B
YAML

name: Sync Wiki
on:
push:
branches: [ "master" ]
paths:
- 'docs'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Sync Wiki
run: ./.github/scripts/sync-wiki.sh
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}