1234567891011121314151617181920212223 |
- name: Automerge PR
- on:
- schedule:
- - cron: "30 1-23 * * *" # Hourly during 1-23 interval for PR completion
- workflow_dispatch:
- concurrency:
- group: ${{ github.workflow }}
- cancel-in-progress: true
- jobs:
- check-pr:
- runs-on: ubuntu-latest
- steps:
- - name: checkout
- uses: actions/checkout@v4
- with:
- sparse-checkout: |
- .github
- ydb/ci/
- - uses: ./.github/actions/rightlib_sync
- with:
- command: check-pr
- repository: ${{ github.repository }}
- gh_personal_access_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|