-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: asyncapi-bot <[email protected]>%0ACo-authored-by: asyncapi-bot <[email protected]>%0ACo-authored-by: souvik <[email protected]>%0ACo-authored-by: Maciej Urbańczyk <[email protected]>
- Loading branch information
1 parent
3e945c4
commit 8e80a8d
Showing
418 changed files
with
50,216 additions
and
44,045 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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
node_modules | ||
dist | ||
lib/browser.js | ||
scripts | ||
coverage | ||
.nyc_output | ||
test/sample_browser/ | ||
.vscode | ||
.DS_Store | ||
/docs | ||
/coverage | ||
/lib | ||
/esm | ||
/cjs | ||
/browser |
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 @@ | ||
# This workflow 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 | ||
|
||
name: Check Markdown links (Weekly) | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# At 00:00 UTC on every Monday | ||
- cron: '0 0 * * 0' | ||
|
||
jobs: | ||
External-link-validation-weekly: | ||
if: startsWith(github.repository, 'asyncapi/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Checks the status of hyperlinks in .md files | ||
- name: Check links | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
|
||
# A configuration file can be included, indicating the properties of the link check action | ||
# More information can be found here: https://github.com/tcort/markdown-link-check#config-file-format | ||
# Create mlc_config.json file in the root of the directory | ||
|
||
- name: Report workflow run status to Slack | ||
uses: 8398a7/action-slack@v3 | ||
with: | ||
status: ${{ job.status }} | ||
fields: repo,action,workflow | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CI_FAIL_NOTIFY }} | ||
if: failure() # Only, on failure, send a message on the 94_bot-failing-ci slack channel |
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,27 @@ | ||
# This workflow 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 | ||
|
||
name: Check Markdown links | ||
|
||
on: | ||
pull_request_target: | ||
types: [synchronize, ready_for_review, opened, reopened] | ||
paths: | ||
- '**.md' | ||
|
||
jobs: | ||
External-link-validation-on-PR: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Check links | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
check-modified-files-only: 'yes' # Only modified files are checked on PRs | ||
|
||
# A configuration file can be included, indicating the properties of the link check action | ||
# More information can be found here: https://github.com/tcort/markdown-link-check#config-file-format | ||
# Create mlc_config.json file in the root of the directory |
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,7 +1,10 @@ | ||
node_modules | ||
.vscode | ||
.nyc_output | ||
coverage | ||
.DS_Store | ||
test/sample_browser/bundle.js | ||
dist/bundle.js | ||
/docs | ||
/coverage | ||
/lib | ||
/esm | ||
/cjs | ||
/browser | ||
*.tgz |
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,11 +1,9 @@ | ||
test/ | ||
.DS_Store | ||
*.swp | ||
.github | ||
.all-contributorsrc | ||
.editorconfig | ||
coverage | ||
.nyc_output | ||
assets/logo.png | ||
scripts | ||
vscode | ||
vscode | ||
coverage | ||
node_modules |
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,2 @@ | ||
# Disable specific duplicate code since it would introduce more complexity to reduce it. | ||
sonar.cpd.exclusions=src/models/**/*.ts |
Oops, something went wrong.