Skip to content

Update origin trials #7

Update origin trials

Update origin trials #7

name: Update origin trials
on:
schedule:
- cron: '0 12 * * 1'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check-out the repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run the update-origin-trials script
run: node additional-data/scripts/update-origin-trials.js
- name: Commit changes
run: |
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
git config --local user.name "${{ github.actor }}"
git add .
git commit -m "Refresh OTs" --allow-empty
git push origin main