Synchronize Source of Truth #30
This file contains hidden or 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: Synchronize Source of Truth | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| synchronize: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Fetch Sync Branch Reference | |
| run: | | |
| git fetch origin refs/heads/sync/source-of-truth:refs/remotes/origin/sync/source-of-truth || true | |
| - name: Synchronize Source of Truth | |
| uses: GraphicalPlayground/gp-actions/sync/source-of-truth@main | |
| with: | |
| sot-repository: 'GraphicalPlayground/gp-source-of-truth' | |
| sot-branch: 'main' | |
| license: 'Apache 2.0' | |
| allow-templatization: true | |
| # file-to-sync: '' | |
| push-changes: true | |
| create-pr: true |