-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump to release candidate and readme improvement (#160)
- Loading branch information
Showing
8 changed files
with
597 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
{ | ||
"projectName": "@asyncapi/parser", | ||
"projectOwner": "asyncapi", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": false, | ||
"commitConvention": "none", | ||
"contributors": [ | ||
{ | ||
"login": "fmvilas", | ||
"name": "Fran Méndez", | ||
"avatar_url": "https://avatars3.githubusercontent.com/u/242119?v=4", | ||
"profile": "http://www.fmvilas.com/", | ||
"contributions": [ | ||
"question", | ||
"bug", | ||
"code", | ||
"doc", | ||
"ideas", | ||
"maintenance", | ||
"plugin", | ||
"review", | ||
"test" | ||
] | ||
}, | ||
{ | ||
"login": "derberg", | ||
"name": "Lukasz Gornicki", | ||
"avatar_url": "https://avatars1.githubusercontent.com/u/6995927?v=4", | ||
"profile": "https://resume.github.io/?derberg", | ||
"contributions": [ | ||
"question", | ||
"bug", | ||
"code", | ||
"doc", | ||
"ideas", | ||
"maintenance", | ||
"review", | ||
"test" | ||
] | ||
}, | ||
{ | ||
"login": "jonaslagoni", | ||
"name": "Jonas Lagoni", | ||
"avatar_url": "https://avatars1.githubusercontent.com/u/13396189?v=4", | ||
"profile": "https://github.com/jonaslagoni", | ||
"contributions": [ | ||
"question", | ||
"bug", | ||
"code", | ||
"ideas", | ||
"review" | ||
] | ||
}, | ||
{ | ||
"login": "magicmatatjahu", | ||
"name": "Maciej Urbańczyk", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/20404945?v=4", | ||
"profile": "https://github.com/magicmatatjahu", | ||
"contributions": [ | ||
"bug", | ||
"code", | ||
"review" | ||
] | ||
}, | ||
{ | ||
"login": "jcmellado", | ||
"name": "Juan Mellado", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/6494060?v=4", | ||
"profile": "https://www.inmensia.com/", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "jamescrowley", | ||
"name": "James Crowley", | ||
"avatar_url": "https://avatars1.githubusercontent.com/u/509533?v=4", | ||
"profile": "https://www.jamescrowley.net/", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "rmelian", | ||
"name": "raisel melian", | ||
"avatar_url": "https://avatars3.githubusercontent.com/u/4565267?v=4", | ||
"profile": "https://github.com/rmelian", | ||
"contributions": [ | ||
"code" | ||
] | ||
} | ||
], | ||
"contributorsPerLine": 4 | ||
} |
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,37 @@ | ||
name: 'Update generated parts of documentation on docs: commits' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
docs-gen: | ||
name: 'Generate docs and create PR' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 13 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Regenerate docs | ||
run: npm run docs | ||
- name: Generate README ToC | ||
run: npm run gen-readme-toc | ||
- name: Create Pull Request with updated docs | ||
# PR should be created within this GH action only if it is a docs: commit | ||
# Otherwise it will conflict with release workflow | ||
if: startsWith(github.event.commits[0].message, 'docs:') | ||
uses: peter-evans/[email protected] | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
commit-message: 'chore: update generated docs' | ||
committer: asyncapi-bot <[email protected]> | ||
author: asyncapi-bot <[email protected]> | ||
title: 'chore: update generated docs' | ||
body: 'Update of docs that are generated and were forgotten on PR level.' | ||
branch: gen-docs-update |
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,10 @@ | ||
test/ | ||
.DS_Store | ||
*.swp | ||
.github | ||
.all-contributorsrc | ||
.editorconfig | ||
coverage | ||
.nyc_output | ||
assets/logo.png | ||
vscode |
This file was deleted.
Oops, something went wrong.
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.