1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

More debugging to understand why targetting isn't working (#6366)

Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-10-07 11:29:49 -04:00 committed by GitHub
parent 1239a8faf4
commit 5fefedbe8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,8 @@ jobs:
run: |
echo "merged=${{ github.event.pull_request.merged }}"
echo "ref=${{ github.event.pull_request.base.ref }}"
echo "targets_master=${{ github.event.pull_request.base.ref == 'master' }}"
echo "targets_release_branch=${{ startsWith(github.event.pull_request.base.ref, 'release/v') }}"
echo "is_release=${{ contains(github.event.pull_request.labels.*.name, 'release') }}"
echo "should_continue=${{ github.event.pull_request.merged == 'true' && contains(github.event.pull_request.labels.*.name, 'release') && (github.event.pull_request.base.ref == 'master' || startsWith(github.event.pull_request.base.ref, 'release/v')) }}"
exit 1