Collect Context Data #265
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: 'Collect Context Data' | |
| on: | |
| schedule: | |
| - cron: '0 20 * * 0' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: browserstack | |
| jobs: | |
| build: | |
| name: 'Collect Context Data' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: check out | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 | |
| with: | |
| go-version: '^1.25' | |
| - name: make | |
| run: make scripts -j 2 | |
| - name: collect | |
| run: | | |
| web-tests-collect-ua-strings | |
| web-tests-reset-priority | |
| env: | |
| BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | |
| BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
| - name: pages | |
| run: web-tests-pages | |
| - name: save | |
| run: | | |
| # Git config | |
| git config user.name github-actions[bot] | |
| git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
| git add . | |
| git commit --allow-empty -m "collect context data" | |
| git push --set-upstream origin main | |