This repository was archived by the owner on Aug 15, 2026. It is now read-only.
Added campaign.excludedApps support (closes KudoAI/ads-library#129)β¦
#511
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 changes to GitLab | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| if: (github.repository == 'KudoAI/googlegpt') | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| env: | |
| TZ: PST8PDT | |
| steps: | |
| - name: Checkout KudoAI/googlegpt | |
| uses: actions/checkout@v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Push changes to gitlab.com/kudoai/googlegpt | |
| env: | |
| GITLAB_SYNC_PAT: ${{ secrets.GITLAB_SYNC_PAT }} | |
| run: | | |
| git push --force -o ci.skip \ | |
| https://oauth2:$GITLAB_SYNC_PAT@gitlab.com/kudoai/googlegpt.git main |