Scheduled API Specs Pull Request #2193
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: Scheduled API Specs Pull Request | |
| on: | |
| schedule: | |
| - cron: '0 */12 * * *' | |
| jobs: | |
| api-specs-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - run: make api-specs-pr | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_SECRET }} | |
| GIT_COMMITTER_NAME: algolia-ci | |
| GIT_AUTHOR_NAME: algolia-ci | |
| GIT_COMMITTER_EMAIL: [email protected] | |
| GIT_AUTHOR_EMAIL: [email protected] |