name: Prestable sync on: schedule: - cron: "30 0 * * *" # At 00:30 -- for PR creation workflow_dispatch: concurrency: group: ${{ github.workflow }} cancel-in-progress: true env: GH_TOKEN: ${{ secrets.YDBOT_TOKEN }} jobs: create-pr: runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - base_branch: prestable-26-3 head_branch: main label: sync-prestable steps: - name: checkout uses: actions/checkout@v5 with: fetch-depth: 0 sparse-checkout: | .github ydb/ci/ - uses: ./.github/actions/rightlib_sync with: base_branch: ${{ matrix.base_branch }} head_branch: ${{ matrix.head_branch }} label: ${{ matrix.label }} repository: ${{ github.repository }} merge_ours: ".github/CODEOWNERS yql/essentials/minikql/mkql_runtime_version.h" gh_personal_access_token: ${{ env.GH_TOKEN }}