Skip to content
This repository was archived by the owner on Jun 22, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.24-alpine AS builder
FROM golang:1.26-alpine AS builder
COPY . /var/app
WORKDIR /var/app
RUN CGO_ENABLED=0 go build -o app .

FROM alpine:3.22
FROM alpine:3.23
LABEL org.opencontainers.image.source=https://github.com/Delphia/manual-approval
RUN apk update && apk add ca-certificates
COPY --from=builder /var/app/app /var/app/app
Expand Down
2 changes: 1 addition & 1 deletion approval.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func newApprovalEnvironment(client *github.Client, repoFullName, repoOwner strin
issueApprovers: approvers,
disallowedUsers: disallowedUsers,
minimumApprovals: minimumApprovals,
issueTitle: fmt.Sprintf("Manual approval required for: %s (run %d)", issueTitle, runID),
issueTitle: fmt.Sprintf("Manual approval required: %s (run %d)", issueTitle, runID),
issueBody: issueBody,
workflowInitiator: workflowInitiator,
}, nil
Expand Down