Skip to content
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

Actor name is not vercel[bot] #56

Open
GRA0007 opened this issue Jul 26, 2023 · 5 comments
Open

Actor name is not vercel[bot] #56

GRA0007 opened this issue Jul 26, 2023 · 5 comments

Comments

@GRA0007
Copy link

GRA0007 commented Jul 26, 2023

Not sure if Vercel have changed how deployments work, but checking the GitHub deployment for a specific sha reveals that the creator.login field is set to my username, not vercel[bot].

actorName: 'vercel[bot]',

Is it important that the deployments are filtered by this username?

deployments.data.find((deployment) => {
return deployment.creator.login === actorName;
});

@jy95
Copy link

jy95 commented Aug 15, 2023

I noticed recently that behavior as well and so detection of my preview deployments failed

image

@Emiltayeb
Copy link

did you find a solution?
any progress?

@victorcarvalhosp
Copy link

I'm getting the same error here:

Could not find any deployments for actor vercel[bot], retrying (attempt 90 / 90)

Did you find a workaround for this?

@RyanClementsHax
Copy link

RyanClementsHax commented Dec 27, 2023

I came by a similar problem, but after diving in further, at least for me, the problem was because I didn't give the workflow the required permissions to run. It seems that because I specified other permissions, by default, everything else is denied, so I had to manually add them back in.

I needed to add this to my workflow file.

permissions:
  pull-requests: write
+  checks: read
+  contents: read
+  deployments: read

Does that fix y'all's issues?

@peterb0yd
Copy link

Bump, I'm still seeing this and @RyanClementsHax's suggested workaround doesn't fix it 😕

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants