File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ jobs:
168168 GITHUB_TOKEN : ${{ secrets._REPO_ADMIN_TOKEN }}
169169
170170 - name : add the no-cherrypick label
171- uses : actions/github-script@v7
171+ uses : actions/github-script@v9
172172 with :
173173 github-token : ${{ secrets._REPO_ADMIN_TOKEN }}
174174 script : |
@@ -305,7 +305,7 @@ jobs:
305305 GITHUB_TOKEN : ${{ secrets._REPO_ADMIN_TOKEN }}
306306
307307 - name : add the no-cherrypick label
308- uses : actions/github-script@v7
308+ uses : actions/github-script@v9
309309 with :
310310 github-token : ${{ secrets._REPO_ADMIN_TOKEN }}
311311 script : |
Original file line number Diff line number Diff line change 8686
8787 - name : is autoMerging enabled for Auto CherryPicked PRs ?
8888 if : ${{ always() && steps.cherrypick.outcome == 'success' && contains(github.event.pull_request.labels.*.name, 'AutoMerge_Cherry_Picked') }}
89- uses : actions/github-script@v7
89+ uses : actions/github-script@v9
9090 with :
9191 github-token : ${{ secrets.CHERRYPICK_PAT }}
9292 script : |
Original file line number Diff line number Diff line change 3535 steps :
3636 - name : Find parent PR details
3737 id : parentPR
38- uses : actions/github-script@v7
38+ uses : actions/github-script@v9
3939 with :
4040 github-token : ${{ secrets.CHERRYPICK_PAT }}
4141 script : |
7575 steps :
7676 - name : Convert String to List
7777 id : conversion
78- uses : actions/github-script@v7
78+ uses : actions/github-script@v9
7979 with :
8080 script : |
8181 const branches = "${{ github.event.inputs.branches }}";
@@ -142,7 +142,7 @@ jobs:
142142
143143 - name : is autoMerging enabled for Auto CherryPicked PRs ?
144144 if : ${{ always() && steps.cherrypick.outcome == 'success' && contains(needs.get-parentPR-details.outputs.labels.*.name, 'AutoMerge_Cherry_Picked') }}
145- uses : actions/github-script@v7
145+ uses : actions/github-script@v9
146146 with :
147147 github-token : ${{ secrets.CHERRYPICK_PAT }}
148148 script : |
Original file line number Diff line number Diff line change 2525
2626 - name : remove the PRT Passed label, for new commit
2727 if : always() && ${{steps.prt.outputs.result}} == 'not_found'
28- uses : actions/github-script@v7
28+ uses : actions/github-script@v9
2929 with :
3030 github-token : ${{ secrets.CHERRYPICK_PAT }}
3131 script : |
Original file line number Diff line number Diff line change 4646 - name : Add the PRT passed/failed labels
4747 id : prt-status
4848 if : ${{ always() && github.event.inputs.build_status != '' }}
49- uses : actions/github-script@v7
49+ uses : actions/github-script@v9
5050 with :
5151 github-token : ${{ secrets.CHERRYPICK_PAT }}
5252 script : |
6161 });
6262 - name : Remove failed label on test pass or vice-versa
6363 if : ${{ always() && github.event.inputs.build_status != '' }}
64- uses : actions/github-script@v7
64+ uses : actions/github-script@v9
6565 with :
6666 github-token : ${{ secrets.CHERRYPICK_PAT }}
6767 script : |
You can’t perform that action at this time.
0 commit comments