-
-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update with upstream master (#758)
- Loading branch information
1 parent
c74f5c9
commit d239edb
Showing
29 changed files
with
571 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
name: Release issue | ||
about: Track the progress of the next release of the AsyncAPI spec | ||
title: "" | ||
labels: ':shipit: Release' | ||
assignees: '' | ||
--- | ||
|
||
Release X.X.X is scheduled for XXXX | ||
|
||
### Detailed info: | ||
* https://github.com/asyncapi/spec/blob/master/RELEASE_PROCESS.md | ||
|
||
### Kick-off: | ||
* _link to recording of community call where the new release was started_ | ||
|
||
### Release branches: | ||
* https://github.com/asyncapi/spec/tree/BRANCH_NAME | ||
* https://github.com/asyncapi/spec-json-schemas/tree/BRANCH_NAME | ||
* https://github.com/asyncapi/parser-js/tree/BRANCH_NAME | ||
|
||
### Release notes: | ||
* draft PR - https://github.com/asyncapi/website/pull/PULLREQUEST | ||
|
||
### Progress: | ||
- [ ] Create release branches | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Update release branches with new versions | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Update default branches with release branch name | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Create draft release notes | ||
- [ ] Update release branches from forks | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Notify community about release branches | ||
- [ ] Check for potential release contributions | ||
- [ ] Draft announcement blog post for new features and changes | ||
- [ ] Write release notes for new features and changes | ||
- [ ] Prepare pull requests to merge release branches into master | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Notify tsc_members about upcoming release | ||
- [ ] Merge release branches into master | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Write release notes for the releases on Github | ||
- [ ] Create releases on Github | ||
- [ ] spec | ||
- [ ] spec-json-schemas | ||
- [ ] parser-js | ||
- [ ] Update RELEASE_PROCESS doc with any changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#This action is centrally managed in https://github.com/asyncapi/.github/ | ||
#Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo | ||
# This action is centrally managed in https://github.com/asyncapi/.github/ | ||
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo | ||
|
||
#Purpose of this action is to update npm package in libraries that use it. It is like dependabot for asyncapi npm modules only. | ||
#It runs in a repo after merge of release commit and searches for other packages that use released package. Every found package gets updated with lates version | ||
# Purpose of this action is to update npm package in libraries that use it. It is like dependabot for asyncapi npm modules only. | ||
# It runs in a repo after merge of release commit and searches for other packages that use released package. Every found package gets updated with lates version | ||
|
||
name: Bump package version in dependent repos - if Node project | ||
|
||
on: | ||
#It cannot run on release event as when release is created then version is not yet bumped in package.json | ||
#This means we cannot extract easily latest version and have a risk that package is not yet on npm | ||
# It cannot run on release event as when release is created then version is not yet bumped in package.json | ||
# This means we cannot extract easily latest version and have a risk that package is not yet on npm | ||
push: | ||
branches: | ||
- master | ||
|
@@ -31,4 +31,4 @@ jobs: | |
github_token: ${{ secrets.GH_TOKEN }} | ||
committer_username: asyncapi-bot | ||
committer_email: [email protected] | ||
repos_to_ignore: html-template #this is temporary until react component releases 1.0, then it can be removed | ||
repos_to_ignore: html-template # this is temporary until react component releases 1.0, then it can be removed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.