fixing references

This commit is contained in:
2025-08-11 15:47:04 +00:00
parent 957ba11aea
commit 34d1e6cbbe

View File

@ -156,14 +156,15 @@ jobs:
- name: Debug event file
run: |
echo "Gitea event file path: ${{ gitea.event_path }}"
export GT_EVENT_PATH="${{ gitea.event_path }}"
cat "${{ gitea.event_path }}"
exit 1
# exit 1
- name: List changed files in PR
id: changed_files
run: |
PR_NUMBER=$(jq -r .pull_request.number "$GITEA_EVENT_PATH")
REPO=$(jq -r .repository.full_name "$GITEA_EVENT_PATH")
PR_NUMBER=$(jq -r .pull_request.number "$GT_EVENT_PATH")
REPO=$(jq -r .repository.full_name "$GT_EVENT_PATH")
echo "PR #$PR_NUMBER from repo $REPO"