Files
hatchet/.github/workflows/sync-python-quickstart.yml
dependabot[bot] 22eb964d5b chore(deps): bump actions/checkout from 5 to 6 (#2551)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 14:24:16 -05:00

30 lines
671 B
YAML

name: Sync Python Quickstart
on:
push:
branches:
- main
paths:
- 'examples/python/quickstart/**'
workflow_dispatch:
inputs:
manual_trigger:
description: 'Manually trigger the sync'
default: 'true'
required: false
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Run sync script
env:
SYNC_TOKEN: ${{ secrets.SYNC_TOKEN }}
run: |
./hack/sync-quickstart.sh --source-dir "examples/python/quickstart" --target-repo "hatchet-dev/hatchet-python-quickstart"