blob: b7e89627a5e9ac10b5c0bb84785be54fb4d9038d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
name: Rightlib sync
on:
schedule:
- cron: "30 0 * * *" # At 00:30 -- for PR creation
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
create-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: create-pr
repository: ${{ github.repository }}
gh_personal_access_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|