File tree 1 file changed +11
-13
lines changed
utilities/project-fields-validator
1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -4,29 +4,27 @@ IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.1.7 AS python-ci
4
4
5
5
test :
6
6
FROM python-ci+python-base
7
-
8
7
COPY . .
9
-
10
8
DO python-ci+CHECK
11
9
12
10
validate-pr :
13
11
FROM python-ci+python-base
14
-
15
12
COPY . .
16
-
17
- RUN pip install requests
13
+ RUN pip install requests jq
18
14
19
15
ENV PROJECT_NUMBER= 102
20
16
ARG GITHUB_TOKEN
21
- ARG GITHUB_REPOSITORY
22
- ARG GITHUB_EVENT_NUMBER
23
17
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
25
27
26
28
VALIDATE_PROJECT_FIELDS :
27
29
FUNCTION
28
-
29
- ARG GITHUB_REPOSITORY
30
- ARG GITHUB_EVENT_NUMBER
31
-
32
- FROM +validate-pr
30
+ DO +validate-pr
You can’t perform that action at this time.
0 commit comments