Skip to content

Commit 8cd6a4d

Browse files
committed
Workflows: Run EE tests on PRs without label requirement
1 parent 75cca70 commit 8cd6a4d

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.github/workflows/pr-acceptance-ee.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ on:
1515
# The pull_request_target event type fires for pull requests, but in the context of the target
1616
# project.
1717
pull_request_target:
18-
types: [labeled]
1918
# Acceptance tests are unnecessary to run on some types of PRs.
2019
paths-ignore:
2120
- 'docs/**'
@@ -62,7 +61,7 @@ jobs:
6261
acceptance-ee:
6362
# Only run EE tests if the LICENSE_ENCRYPTION_PASSWORD secret exists, so that the workflow
6463
# doesn't fail when code is pushed to a fork.
65-
if: needs.license-encryption-password.outputs.defined && contains(github.event.pull_request.labels.*.name, 'safe to test')
64+
if: ${{ needs.license-encryption-password.outputs.defined }}
6665
timeout-minutes: 60
6766
runs-on: ubuntu-latest
6867
needs: [go-version, license-encryption-password]

.github/workflows/pr-required-labels.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,3 @@ jobs:
2727
mode: exactly
2828
count: 0
2929
labels: needs-rebase
30-
- name: Check "safe to test" or "skip-ee-test"
31-
uses: mheap/github-action-required-labels@v1
32-
with:
33-
mode: minimum
34-
count: 1
35-
labels: safe to test, skip-ee-test

0 commit comments

Comments
 (0)