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

fix(scripts): update release issue process #537

Merged
merged 13 commits into from
May 25, 2022
Merged

fix(scripts): update release issue process #537

merged 13 commits into from
May 25, 2022

Conversation

shortcuts
Copy link
Member

@shortcuts shortcuts commented May 24, 2022

🧭 What and Why

🎟 JIRA Ticket: https://algolia.atlassian.net/browse/APIC-499

Changes included:

This PR aims at harmonizing our release process with our CI, to prevent any duplication of the generation logic.

yarn release

  • Open PRs instead of issues
    • The goal of this change is to be able to edit any changes done by the release script before the release has been triggered
    • The PR will be a "prepare for release" PR, with the changes that needs to be done. The release commit will be the changes pushed by the CI, once the PR is merged.
  • Runs the configs update before opening a PR
    • This allows us to leverage the current CI workflow without reinventing the wheel

release action

The release now runs at the very end of the CI, on main branch, and leverages our existing codegen and spread scripts

  • codegen
    • A release commit is pushed to the monorepo with the changes to match the release
  • spread
    • Pushes the release commit with the right tags and format

Next

Testing :D

🧪 Test

@netlify
Copy link

netlify bot commented May 24, 2022

Deploy Preview for api-clients-automation canceled.

Name Link
🔨 Latest commit 1db6043
🔍 Latest deploy log https://app.netlify.com/sites/api-clients-automation/deploys/628cf7aad4a6d7000854d90e

@algolia-bot
Copy link
Collaborator

algolia-bot commented May 24, 2022

✗ The generated branch has been deleted.

If the PR has been merged, you can check the generated code on the main branch.
You can still access the code generated on main via this commit.

@shortcuts shortcuts requested review from eunjae-lee and millotp May 24, 2022 13:49
@shortcuts shortcuts self-assigned this May 24, 2022
@shortcuts shortcuts marked this pull request as ready for review May 24, 2022 13:50
@@ -325,9 +325,11 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GENERATE_BOT }}
PR_NUMBER: ${{ github.event.number }}
IS_RELEASE_COMMIT: ${{ github.event.head_commit.message }}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a doubt on this one, hopefully it prints the latest commit message once on main

@@ -64,7 +64,7 @@ async function preCommit() {
}

console.log(
chalk.bgYellow('[INFO]'),
chalk.black.bgYellow('[INFO]'),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was hard to read

async function createReleaseIssue(): Promise<void> {
ensureGitHubToken();

if (!process.env.LOCAL_TEST_DEV) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We want to be able to test things locally from other branches, so I've added this condition

Copy link
Collaborator

@millotp millotp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Huge PR !

coAuthors: [author, ...coAuthors],
cwd: tempGitDir,
});
await run(`git push`, { cwd: tempGitDir });
await execa('git', ['tag', tag], {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why use execa here ? it's the same as git tag ${tag} no ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

idk, it was like this already so I've assumed there was a reason behind it, any idea @eunjae-lee ?

@@ -6,7 +6,6 @@
"createMatrix": "ts-node ci/githubActions/createMatrix.ts",
"createReleaseIssue": "ts-node release/create-release-issue.ts",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is createReleaseIssue still used ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep to create a PR, I wanted to rename it in this PR but I was afraid the diff would be too big, so I'll do it before merging/once merged


if (
message
.toLocaleLowerCase()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why the lowercase ? it's not used for any other test, it should always be the same format

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At the beginning of the codegen, there was capitalized letters in the commit message, to make it future proof (once we re-generate the changelog from scratch for the official version for example), I've added it

@@ -4,6 +4,7 @@ import dotenv from 'dotenv';
import semver from 'semver';
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shoud this be called createReleasePR ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep! context here: #537 (comment)

@shortcuts shortcuts requested review from millotp and eunjae-lee May 24, 2022 15:20
@@ -23,6 +23,7 @@ export const MAIN_BRANCH = releaseConfig.mainBranch;
export const OWNER = releaseConfig.owner;
export const REPO = releaseConfig.repo;
export const REPO_URL = `https://github.com/${OWNER}/${REPO}`;
export const TODAY = new Date().toISOString().split('T')[0];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's not release around midnight ahah

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ahahaha

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I said the same to Eunjae this morning

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

Successfully merging this pull request may close these issues.

4 participants