diff --git a/pull_request_template.md b/.github/pull_request_template.md similarity index 67% rename from pull_request_template.md rename to .github/pull_request_template.md index 13fc25d9..ba659117 100644 --- a/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,13 +1,17 @@ ## :bookmark_tabs: Summary + Brief description about the content of your PR: Resolves # ## :straight_ruler: Design Decisions + Describe the way your implementation works or what design decisions you made if applicable: ### :clipboard: Tasks + Make sure you -- [ ] :book: have read the [contribution guidelines](https://github.com/mermaid-js/mermaid/blob/develop/CONTRIBUTING.md) -- [ ] :computer: have added unit/e2e tests (if appropriate) -- [ ] :bookmark: targeted `master` branch + +- [ ] :book: have read the [contribution guidelines](https://github.com/mermaid-js/mermaid/blob/develop/CONTRIBUTING.md) +- [ ] :computer: have added unit/e2e tests (if appropriate) +- [ ] :bookmark: targeted `master` branch diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5c40bcf0..b4203017 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,8 +19,9 @@ jobs: npm i -g yarn yarn install yarn release + yarn version --prerelease --no-git-tag-version git config user.name github-actions git config user.email github-actions@github.com git add ./docs/* - git commit -m "Release" + git commit -m "Release $(yarn version --version)" git push diff --git a/package.json b/package.json index 54e6fdb6..65b3ae47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mermaid-live-editor", - "version": "1.2.2", + "version": "1.2.4-5", "license": "MIT", "devDependencies": { "cross-env": "^7.0.3",