Never skip changelog labelling, default to remove label. (https://github.com/woocommerce/woocommerce-admin/pull/6553)

This commit is contained in:
Sam Seay 2021-03-10 16:30:54 +13:00 committed by GitHub
parent 53812966ac
commit bc0460ebae
1 changed files with 3 additions and 4 deletions

View File

@ -30,9 +30,8 @@ jobs:
shell: bash
- name: Add a reminder label to the PR
uses: ./.github/actions/pr-labeler
if: github.event.pull_request.user.login != 'renovate[bot]' && !steps.skip-workflow.outputs.skip && always()
if: github.event.pull_request.user.login != 'renovate[bot]' && always()
with:
access_token: ${{ github.token }}
label: ${{ env.label }}
action: ${{ env.label_action }}
label: ${{ env.label || 'needs changelog entry' }}
action: ${{ env.label_action || 'remove' }}