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.
1 parent ebf8591 commit 1ada3aaCopy full SHA for 1ada3aa
.github/workflows/pr-preview.yml
@@ -3,6 +3,13 @@ name: PR Preview
3
on:
4
pull_request_target:
5
types: [opened, synchronize, reopened]
6
+ paths:
7
+ - "src/**/*.ts"
8
+ - "!src/**/*.test.ts"
9
+ - "Dockerfile"
10
+ - "package.json"
11
+ - "pnpm-lock.yaml"
12
+ - "tsconfig.json"
13
14
jobs:
15
request-approval:
Dockerfile
@@ -1,5 +1,9 @@
1
FROM node:24.9.0-slim AS builder
2
+# Note: when updating things that go into this Docker image (with COPY or RUN),
+# make sure to update the allow-list in the .github/workflows/pr-preview.yml
+# workflow `on.pull_request_target.paths` section, so it gets rebuilt when needed.
+
WORKDIR /action
COPY package.json pnpm-lock.yaml ./
0 commit comments