Merge pull request #1399 from wpeverest/add-pr-build-zip-workflow #2426
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: Sync Files To Pro | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@master | |
| - name: Run GitHub File Sync | |
| uses: BetaHuhn/repo-file-sync-action@v1.17.17 | |
| with: | |
| GH_PAT: ${{ secrets.REPO_SYNC }} | |
| COMMIT_BODY: "Update: Sync changes from main repository" | |
| ASSIGNEES: som | |
| CONFIG_PATH: .github/sync-file-list.yml |