-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: "Not Found" when pushing a new branch #10
Comments
https://github.com/trilom/file-changes-action appears to have the same issue |
Duplicate of #7 |
I just got the same:
Both of these commits are present, however. Next to that, I can restart the workflow, push new commits or do anything else... nothing seems to work. It just started happening a few minutes ago. Turns out, https://www.githubstatus.com/ shows that Github Actions having issues. So I'd say it's quite likely that @nanaian had the same bad luck. Nothing you can do but wait 👍 |
@StephanBijzitter no, I've repeatedly had this issue for a while. It's a bug in get-changed-files. |
Im getting the exact same error, seems to be on first commit. |
I am also seeing this on the first commit
every additional commit works fine |
Same error here with commitid: |
I get the same as well: Run jitterbit/get-changed-files@v1 |
Run jitterbit/get-changed-files@v1 Same issue for me on pushing a new branch |
I get the same issues as well on new branch |
I also got into this and was so confused because it was working on one project but not another one and I found out how to handle it: It seems the source code is here https://github.com/jitterbit/get-changed-files/blob/master/src/main.ts#L28-L36
on:
push:
branches:
# Push events our default branch
- main
# Push events to branches matching refs/heads/renovate/...
- 'renovate/**'
pull_request:
paths-ignore:
- '*.md'
- 'renovate.json' It makes sense to me as a new branch does not have a base / reference where it's from, it's "floating" around, it's when creating the PR that the base branch is selected. A solution could be to always diff on the default branch, another could be to document this ⬆️ Originally posted by @Jolg42 in Ana06#12 (comment) |
When i branch off from master, edit something and push the commit with the branch to remote, the action fails with:
Run jitterbit/get-changed-files@v1
Base commit: 0000000000000000000000000000000000000000
Head commit: 2c782e73f6c1676f7ae88c551f5a80f61216a68c
##[error]Not Found
However if i then push something on that branch afterwards, it works.
Tbf, it might just be me, not understanding exactly how github and branching works, but would love some guidance on whether or not i can get it to run on the very first push.
The text was updated successfully, but these errors were encountered: