Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/cpu_features.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2022-03-09 13:05:08 +0300
committerGitHub <noreply@github.com>2022-03-09 13:05:08 +0300
commitde700c4a30d1d67f903b7c7f52c9a71f8b4f3bef (patch)
tree1905553d45cb3dcaaaa2a5231e9b9c3222ed6454
parent8a494eb1e158ec2050e5f699a504fbc9b896a43b (diff)
Improve the release process (#231)
-rw-r--r--.grenrc.yml21
-rwxr-xr-xscripts/make_release.sh5
2 files changed, 25 insertions, 1 deletions
diff --git a/.grenrc.yml b/.grenrc.yml
new file mode 100644
index 0000000..aa481cd
--- /dev/null
+++ b/.grenrc.yml
@@ -0,0 +1,21 @@
+---
+ dataSource: "prs"
+ ignoreLabels:
+ - "Apple M1"
+ - "duplicate"
+ - "help wanted"
+ - "invalid"
+ - "question"
+ - "wontfix"
+ onlyMilestones: false
+ groupBy:
+ "API Change":
+ - "API Change"
+ "New features / Enhancements":
+ - "enhancement"
+ - "internal"
+ "Bug Fixes":
+ - "bug"
+ "Misc":
+ - "misc"
+ changelogFilename: "CHANGELOG.md"
diff --git a/scripts/make_release.sh b/scripts/make_release.sh
index 01e85f7..25b59f9 100755
--- a/scripts/make_release.sh
+++ b/scripts/make_release.sh
@@ -69,4 +69,7 @@ git commit -m"Release ${GIT_TAG}"
echo -e "${ACTION}Create new tag${NOCOLOR}"
git tag ${GIT_TAG}
-echo -e "${FINISHED}Local release is ready. Run `git push origin --tags`${NOCOLOR}"
+echo -e "${FINISHED}Manual steps:${NOCOLOR}"
+echo -e "${FINISHED} - Push the tag upstream 'git push origin ${GIT_TAG}'${NOCOLOR}"
+echo -e "${FINISHED} - Create a new release https://github.com/google/cpu_features/releases/new${NOCOLOR}"
+echo -e "${FINISHED} - Update the Release Notes 'gren release --override'${NOCOLOR}"