Skip to content

Commit 46a289d

Browse files
committed
Update Earthfile
1 parent a09ca82 commit 46a289d

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

utilities/project-fields-validator/Earthfile

+11-13
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,27 @@ IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.1.7 AS python-ci
44

55
test:
66
FROM python-ci+python-base
7-
87
COPY . .
9-
108
DO python-ci+CHECK
119

1210
validate-pr:
1311
FROM python-ci+python-base
14-
1512
COPY . .
16-
17-
RUN pip install requests
13+
RUN pip install requests jq
1814

1915
ENV PROJECT_NUMBER=102
2016
ARG GITHUB_TOKEN
21-
ARG GITHUB_REPOSITORY
22-
ARG GITHUB_EVENT_NUMBER
2317

24-
RUN --secret GITHUB_TOKEN python3 main.py
18+
# Extract PR info from GitHub event context
19+
RUN --secret GITHUB_TOKEN \
20+
if [ -f "$GITHUB_EVENT_PATH" ]; then \
21+
PR_NUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH"); \
22+
REPO=$(jq --raw-output .repository.full_name "$GITHUB_EVENT_PATH"); \
23+
export GITHUB_EVENT_NUMBER=$PR_NUMBER; \
24+
export GITHUB_REPOSITORY=$REPO; \
25+
fi && \
26+
python3 main.py
2527

2628
VALIDATE_PROJECT_FIELDS:
2729
FUNCTION
28-
29-
ARG GITHUB_REPOSITORY
30-
ARG GITHUB_EVENT_NUMBER
31-
32-
FROM +validate-pr
30+
DO +validate-pr

0 commit comments

Comments
 (0)