Two bugs in .github/workflows/compile-src.yml:
The pull_request event has sychronize instead of synchronize. GitHub ignores the misspelled event type so CI never fires on new commits pushed to an open PR, only on PR open.
The Clone repository step does git clone ... ${{ github.repository }} where github.repository expands to SWG-Source/src, not a URL. Should be https://github.com/${{ github.repository }}. This is why both recorded CI runs fail at the clone step.
Two bugs in
.github/workflows/compile-src.yml:The
pull_requestevent hassychronizeinstead ofsynchronize. GitHub ignores the misspelled event type so CI never fires on new commits pushed to an open PR, only on PR open.The
Clone repositorystep doesgit clone ... ${{ github.repository }}wheregithub.repositoryexpands toSWG-Source/src, not a URL. Should behttps://github.com/${{ github.repository }}. This is why both recorded CI runs fail at the clone step.