File tree Expand file tree Collapse file tree 2 files changed +41
-16
lines changed Expand file tree Collapse file tree 2 files changed +41
-16
lines changed Original file line number Diff line number Diff line change
1
+ name : Sync prestables
2
+ on :
3
+ schedule :
4
+ - cron : " 30 0 * * *" # At 00:30 -- for PR creation
5
+ workflow_dispatch :
6
+ concurrency :
7
+ group : ${{ github.workflow }}
8
+ cancel-in-progress : true
9
+ env :
10
+ GH_TOKEN : ${{ secrets.YDBOT_TOKEN }}
11
+ jobs :
12
+ create-pr :
13
+ runs-on : ubuntu-latest
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+ include :
18
+ - base_branch : prestable-25-2
19
+ head_branch : stable-25-1
20
+ label : sync-prestable
21
+ - base_branch : prestable-25-3
22
+ head_branch : main
23
+ label : sync-prestable
24
+ steps :
25
+ - name : checkout
26
+ uses : actions/checkout@v4
27
+ with :
28
+ fetch-depth : 0
29
+ sparse-checkout : |
30
+ .github
31
+ ydb/ci/
32
+ - uses : ./.github/actions/rightlib_sync
33
+ with :
34
+ base_branch : ${{ matrix.base_branch }}
35
+ head_branch : ${{ matrix.head_branch }}
36
+ label : ${{ matrix.label }}
37
+ repository : ${{ github.repository }}
38
+ gh_personal_access_token : ${{ env.GH_TOKEN }}
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
create-pr :
13
13
runs-on : ubuntu-latest
14
- strategy :
15
- fail-fast : false
16
- matrix :
17
- include :
18
- - base_branch : prestable-25-2
19
- head_branch : stable-25-1
20
- label : sync-prestable
21
- - base_branch : prestable-25-3
22
- head_branch : main
23
- label : sync-prestable
24
- - base_branch : main
25
- head_branch : rightlib
26
- label : rightlib
27
14
steps :
28
15
- name : checkout
29
16
uses : actions/checkout@v4
34
21
ydb/ci/
35
22
- uses : ./.github/actions/rightlib_sync
36
23
with :
37
- base_branch : ${{ matrix.base_branch }}
38
- head_branch : ${{ matrix.head_branch }}
39
- label : ${{ matrix.label }}
24
+ base_branch : main
25
+ head_branch : rightlib
26
+ label : rightlib
40
27
repository : ${{ github.repository }}
41
28
gh_personal_access_token : ${{ env.GH_TOKEN }}
You can’t perform that action at this time.
0 commit comments