-
Notifications
You must be signed in to change notification settings - Fork 12
32 lines (32 loc) · 794 Bytes
/
demo.yml
File metadata and controls
32 lines (32 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Demo
"on":
schedule:
- cron: "0 3 * * *"
push:
jobs:
file-sync:
name: File Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./
name: "Simple"
with:
DRY_RUN: true
FILE_PATTERNS: |
^README.md$
^.github/workflows/sync-.*
TARGET_REPOS: |
adrianjost/files-sync-target:main
GITHUB_TOKEN: ${{ secrets.SYNCED_GITHUB_TOKEN }}
- uses: ./
name: "With custom roots"
with:
DRY_RUN: true
FILE_PATTERNS: |
.*\.js
TARGET_REPOS: |
adrianjost/files-sync-target
SRC_ROOT: "/src/"
TARGET_ROOT: "/target/"
GITHUB_TOKEN: ${{ secrets.SYNCED_GITHUB_TOKEN }}