Skip to content

Sync upstream master #8

Sync upstream master

Sync upstream master #8

Workflow file for this run

name: Sync upstream master
on:
schedule:
- cron: '0 6 * * *' # Runs daily at 6 AM UTC
workflow_dispatch: # Allow manual trigger from GitHub UI
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Sync fork with upstream
run: |
gh api repos/Teradata/trino/merge-upstream -f branch=master
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}