We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8776fdb + 0d89b8f commit 823d311Copy full SHA for 823d311
.github/workflows/copy_labels.yml
@@ -6,6 +6,10 @@ on:
6
7
jobs:
8
copy-labels:
9
+ # Avoid being triggered by forks
10
+ if: "! github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]'"
11
+ permissions:
12
+ pull-requests: write
13
runs-on: ubuntu-latest
14
name: Copy labels from linked issues
15
steps:
src/test/java/edu/harvard/iq/dataverse/MailServiceBeanIT.java
@@ -75,7 +75,7 @@ static void setUp() {
75
@Container
76
static GenericContainer<?> maildev = new GenericContainer<>("dockage/mailcatcher")
77
.withExposedPorts(PORT_HTTP, PORT_SMTP)
78
- .waitingFor(Wait.forHttp("/"));
+ .waitingFor(Wait.forHttp("/").forPort(PORT_HTTP));
79
80
static String tcSmtpHost() {
81
return maildev.getHost();
0 commit comments