From 8336fd394bbdff6841cb5f8c6d06de35b97ece85 Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Thu, 8 Oct 2020 10:51:05 -0700 Subject: [PATCH] Update contributors.md --- docs/contributors.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/contributors.md b/docs/contributors.md index 2a85d37..ae9dfe8 100644 --- a/docs/contributors.md +++ b/docs/contributors.md @@ -22,3 +22,13 @@ If you would like to contribute there are a few things to consider: ## Writing tests With any contribution please take time to consider how this can be tested to maintain high quality. Current tests can be found in the folder __tests__ for examples. + +## Creating new version + +Details on versioning can be found here: https://github.com/actions/toolkit/blob/main/docs/action-versioning.md +Create a new release using the UI. Version format should be `v1.x.x`. Creating a new major version requires reaction from users and should be done only with breaking changes. +Once the new release is created, the v1 tag needs to be updated as well. +``` +git tag -fa v1 -m "Update v1 tag" +git push origin v1 --force +```