Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto_branching.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }}

- name: add the no-cherrypick label
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets._REPO_ADMIN_TOKEN }}
script: |
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }}

- name: add the no-cherrypick label
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets._REPO_ADMIN_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: is autoMerging enabled for Auto CherryPicked PRs ?
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(github.event.pull_request.labels.*.name, 'AutoMerge_Cherry_Picked') }}
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/auto_cherry_pick_merged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- name: Find parent PR details
id: parentPR
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- name: Convert String to List
id: conversion
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const branches = "${{ github.event.inputs.branches }}";
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- name: is autoMerging enabled for Auto CherryPicked PRs ?
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(needs.get-parentPR-details.outputs.labels.*.name, 'AutoMerge_Cherry_Picked') }}
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prt_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: remove the PRT Passed label, for new commit
if: always() && ${{steps.prt.outputs.result}} == 'not_found'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prt_result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Add the PRT passed/failed labels
id: prt-status
if: ${{ always() && github.event.inputs.build_status != '' }}
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand All @@ -61,7 +61,7 @@ jobs:
});
- name: Remove failed label on test pass or vice-versa
if: ${{ always() && github.event.inputs.build_status != '' }}
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
Loading