-
Notifications
You must be signed in to change notification settings - Fork 27
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
[FEC-157] Update prerelease workflow #3664
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fine with that, thanks ✅
Summary
Update prerelease workflow
Description
The initial goal of this PR was to fix an error we currently have in the prerelease workflow regarding an invalid version number we're using for the
myrotvorets/set-commit-status-action@v2
action:That action has not published any
v2
tag so we need to use a specific version. I was suggesting to use the latest available (2.0.1
).You can take a look at this PR's first commit.
Afterwards, I thought about the purpose of using that action in the workflow: it seems we want to set a visual mark on the last commit before the preview release comment was written.
Since that mark is very subtle (visually) and we are also adding a comment when the release process in finished so we know whether it went well or not, my second commit in this PR is my proposal to remove those steps from the workflow as I believe the code we add to the workflow does not outweigh the benefits we get from it.
Of course, open for discussion.