Update post-merge workflow to add 'needs: analysis' label (#39277)

This commit is contained in:
jonathansadowski 2023-07-18 05:01:36 +07:00 committed by GitHub
parent a661f5afde
commit 2f407cb172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -45,3 +45,9 @@ jobs:
env:
PULL_REQUEST_ID: ${{ github.event.pull_request.node_id }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Add the label for PR analysis'
if: github.event.pull_request.base.ref == 'trunk'
uses: actions-ecosystem/action-add-labels@bd52874380e3909a1ac983768df6976535ece7f8
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: 'needs: analysis'