We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1b429a + 6f71aad commit 61ac6d3Copy full SHA for 61ac6d3
.github/workflows/test-for-work.yml
@@ -36,7 +36,7 @@ jobs:
36
fi
37
echo "PRs to cherry-pick:"
38
echo "$PR_LIST"
39
- echo "::set-output name=pr_list::$PR_LIST"
+ echo "pr_list=$PR_LIST" >> $GITHUB_OUTPUT
40
- name: Create new branch
41
env:
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -45,7 +45,7 @@ jobs:
45
NEW_BRANCH="cherry-pick-${{ inputs.milestone }}-$(date +'%Y%m%d%H%M%S')"
46
git checkout ${{ inputs.target_branch }}
47
git checkout -b $NEW_BRANCH
48
- echo "::set-output name=new_branch::$NEW_BRANCH"
+ echo "new_branch=$NEW_BRANCH" >> $GITHUB_OUTPUT
49
- name: Cherry-pick PRs
50
51
0 commit comments