Skip to content

Commit 823d311

Browse files
committed
Merge branch 'develop' into 11305-export-drafts #11305
2 parents 8776fdb + 0d89b8f commit 823d311

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/copy_labels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66

77
jobs:
88
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
913
runs-on: ubuntu-latest
1014
name: Copy labels from linked issues
1115
steps:

src/test/java/edu/harvard/iq/dataverse/MailServiceBeanIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ static void setUp() {
7575
@Container
7676
static GenericContainer<?> maildev = new GenericContainer<>("dockage/mailcatcher")
7777
.withExposedPorts(PORT_HTTP, PORT_SMTP)
78-
.waitingFor(Wait.forHttp("/"));
78+
.waitingFor(Wait.forHttp("/").forPort(PORT_HTTP));
7979

8080
static String tcSmtpHost() {
8181
return maildev.getHost();

0 commit comments

Comments
 (0)