Skip to content

Commit 15e2922

Browse files
authored
Merge branch 'master' into chore/refine-application-definition
2 parents 46fe859 + 7a834bd commit 15e2922

File tree

10 files changed

+38
-24
lines changed

10 files changed

+38
-24
lines changed

.github/workflows/automerge-orphans.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
}
5353
- if: steps.orphans.outputs.found == 'true'
5454
name: Convert markdown to slack markdown
55-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
55+
# This workflow is from our own org repo and safe to reference by 'master'.
56+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
5657
id: issuemarkdown
5758
with:
5859
markdown: "-> [${{steps.orphans.outputs.title}}](${{steps.orphans.outputs.url}})"

.github/workflows/issues-prs-notifications.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Convert markdown to slack markdown for issue
24-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
24+
# This workflow is from our own org repo and safe to reference by 'master'.
25+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
2526
id: issuemarkdown
2627
env:
2728
ISSUE_TITLE: ${{github.event.issue.title}}
@@ -43,7 +44,8 @@ jobs:
4344
runs-on: ubuntu-latest
4445
steps:
4546
- name: Convert markdown to slack markdown for pull request
46-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
47+
# This workflow is from our own org repo and safe to reference by 'master'.
48+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
4749
id: prmarkdown
4850
env:
4951
PR_TITLE: ${{github.event.pull_request.title}}
@@ -65,7 +67,8 @@ jobs:
6567
runs-on: ubuntu-latest
6668
steps:
6769
- name: Convert markdown to slack markdown for pull request
68-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
70+
# This workflow is from our own org repo and safe to reference by 'master'.
71+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
6972
id: discussionmarkdown
7073
env:
7174
DISCUSSION_TITLE: ${{github.event.discussion.title}}

.github/workflows/notify-tsc-members-mention.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
# Handling Slack notifications
4444
#########
4545
- name: Convert markdown to slack markdown
46-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
46+
# This workflow is from our own org repo and safe to reference by 'master'.
47+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
4748
id: issuemarkdown
4849
with:
4950
markdown: "[${{github.event.issue.title}}](${{github.event.issue.html_url}}) \n ${{github.event.issue.body}}"
@@ -89,7 +90,8 @@ jobs:
8990
# Handling Slack notifications
9091
#########
9192
- name: Convert markdown to slack markdown
92-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
93+
# This workflow is from our own org repo and safe to reference by 'master'.
94+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
9395
id: prmarkdown
9496
with:
9597
markdown: "[${{github.event.pull_request.title}}](${{github.event.pull_request.html_url}}) \n ${{github.event.pull_request.body}}"
@@ -135,7 +137,8 @@ jobs:
135137
# Handling Slack notifications
136138
#########
137139
- name: Convert markdown to slack markdown
138-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
140+
# This workflow is from our own org repo and safe to reference by 'master'.
141+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
139142
id: discussionmarkdown
140143
with:
141144
markdown: "[${{github.event.discussion.title}}](${{github.event.discussion.html_url}}) \n ${{github.event.discussion.body}}"
@@ -181,7 +184,8 @@ jobs:
181184
# Handling Slack notifications
182185
#########
183186
- name: Convert markdown to slack markdown
184-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
187+
# This workflow is from our own org repo and safe to reference by 'master'.
188+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
185189
id: issuemarkdown
186190
with:
187191
markdown: "[${{github.event.issue.title}}](${{github.event.comment.html_url}}) \n ${{github.event.comment.body}}"
@@ -227,7 +231,8 @@ jobs:
227231
# Handling Slack notifications
228232
#########
229233
- name: Convert markdown to slack markdown
230-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
234+
# This workflow is from our own org repo and safe to reference by 'master'.
235+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
231236
id: prmarkdown
232237
with:
233238
markdown: "[${{github.event.issue.title}}](${{github.event.comment.html_url}}) \n ${{github.event.comment.body}}"
@@ -273,7 +278,8 @@ jobs:
273278
# Handling Slack notifications
274279
#########
275280
- name: Convert markdown to slack markdown
276-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
281+
# This workflow is from our own org repo and safe to reference by 'master'.
282+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
277283
id: discussionmarkdown
278284
with:
279285
markdown: "[${{github.event.discussion.title}}](${{github.event.comment.html_url}}) \n ${{github.event.comment.body}}"

.github/workflows/release-announcements.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
- name: Checkout repository
1818
uses: actions/checkout@v4
1919
- name: Convert markdown to slack markdown for issue
20-
uses: asyncapi/.github/.github/actions/slackify-markdown@master
20+
# This workflow is from our own org repo and safe to reference by 'master'.
21+
uses: asyncapi/.github/.github/actions/slackify-markdown@master # //NOSONAR
2122
id: markdown
2223
env:
2324
RELEASE_TAG: ${{github.event.release.tag_name}}

LICENSE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/

NOTICE

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
AsyncAPI Initiative
2-
Copyright The Linux Foundation
1+
Copyright 2016-2025 AsyncAPI Initiative
2+
3+
This product includes software developed at
4+
AsyncAPI Initiative (http://www.asyncapi.com/).

scripts/converter/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/converter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "This script converts the official examples to newer versions once released.",
44
"dependencies": {
55
"@asyncapi/converter": "^1.4.6",
6-
"js-yaml": "^4.1.0"
6+
"js-yaml": "^4.1.1"
77
},
88
"main": "index.js",
99
"scripts": {

scripts/validation/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/validation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"license": "Apache-2.0",
1111
"devDependencies": {
1212
"@asyncapi/parser": "^3.4.0",
13-
"js-yaml": "^4.1.0",
13+
"js-yaml": "^4.1.1",
1414
"json-merge-patch": "^1.0.2",
1515
"jsonpointer": "^5.0.1"
1616
}

0 commit comments

Comments
 (0)