Add CFE label to cherry-picks via workflow (#40570)
add CFE label to cherry-picks
This commit is contained in:
parent
92eb4efd9d
commit
e8df6a634e
|
@ -294,6 +294,15 @@ jobs:
|
|||
|
||||
core.setOutput( 'cherry-pick-pr', pr.data.html_url )
|
||||
|
||||
// label PR
|
||||
|
||||
const label = await github.rest.issues.addLabels({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: pr.data.number,
|
||||
labels: ["metric: code freeze exception"],
|
||||
});
|
||||
|
||||
- name: Checkout trunk branch
|
||||
if: steps.changelog.outputs.changelogsToBeDeleted != '' && steps.changelog.outputs.changelogsToBeDeleted != null
|
||||
run: git checkout trunk
|
||||
|
|
Loading…
Reference in New Issue