Skip to content

Commit 919e6ce

Browse files
authored
feat: update with master (#2380)
2 parents 07d0cbf + c9c363a commit 919e6ce

File tree

10 files changed

+52
-22
lines changed

10 files changed

+52
-22
lines changed

.all-contributorsrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,6 +1191,16 @@
11911191
"code",
11921192
"test"
11931193
]
1194+
},
1195+
{
1196+
"login": "jadinm",
1197+
"name": "Mathieu Jadin",
1198+
"avatar_url": "https://avatars.githubusercontent.com/u/4190063?v=4",
1199+
"profile": "https://github.com/jadinm",
1200+
"contributions": [
1201+
"code",
1202+
"test"
1203+
]
11941204
}
11951205
],
11961206
"contributorsPerLine": 7,

.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/bump.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,17 @@ jobs:
2424
- name: Check if Node.js project and has package.json
2525
id: packagejson
2626
run: test -e ./package.json && echo "exists=true" >> $GITHUB_OUTPUT || echo "exists=false" >> $GITHUB_OUTPUT
27+
- name: Setup corepack with pnpm and yarn
28+
if: steps.packagejson.outputs.exists == 'true'
29+
run: corepack enable
2730
- if: steps.packagejson.outputs.exists == 'true'
2831
name: Bumping latest version of this package in other repositories
29-
uses: derberg/npm-dependency-manager-for-your-github-org@1eafd3bf3974f21d395c1abac855cb04b295d570 # using v6.-.- https://github.com/derberg/npm-dependency-manager-for-your-github-org/releases/tag/v6
32+
uses: derberg/npm-dependency-manager-for-your-github-org@f95b99236e8382a210042d8cfb84f42584e29c24 # using v6.2.0.-.- https://github.com/derberg/npm-dependency-manager-for-your-github-org/releases/tag/v6.2.0
3033
with:
3134
github_token: ${{ secrets.GH_TOKEN }}
3235
committer_username: asyncapi-bot
3336
committer_email: info@asyncapi.io
3437
repos_to_ignore: spec,bindings,saunter,server-api
3538
custom_id: "dependency update from asyncapi bot"
39+
search: "true"
40+
ignore_paths: .github/workflows

.github/workflows/if-nodejs-release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ jobs:
5050
shell: bash
5151
- if: steps.packagejson.outputs.exists == 'true'
5252
name: Check package-lock version
53-
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master
53+
# This workflow is from our own org repo and safe to reference by 'master'.
54+
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master # //NOSONAR
5455
id: lockversion
5556
- if: steps.packagejson.outputs.exists == 'true'
5657
name: Setup Node.js
@@ -96,7 +97,8 @@ jobs:
9697
shell: bash
9798
- if: steps.packagejson.outputs.exists == 'true'
9899
name: Check package-lock version
99-
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master
100+
# This workflow is from our own org repo and safe to reference by 'master'.
101+
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master # //NOSONAR
100102
id: lockversion
101103
- if: steps.packagejson.outputs.exists == 'true'
102104
name: Setup Node.js

.github/workflows/if-nodejs-version-bump.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
run: test -e ./package.json && echo "exists=true" >> $GITHUB_OUTPUT || echo "exists=false" >> $GITHUB_OUTPUT
2727
- if: steps.packagejson.outputs.exists == 'true'
2828
name: Check package-lock version
29-
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master
29+
# This workflow is from our own org repo and safe to reference by 'master'.
30+
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master # //NOSONAR
3031
id: lockversion
3132
- if: steps.packagejson.outputs.exists == 'true'
3233
name: Setup Node.js

.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}}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Discussions](https://img.shields.io/github/discussions/asyncapi/modelina)](https://github.com/asyncapi/modelina/discussions)
99
[![Website](https://img.shields.io/website?label=website&url=https%3A%2F%2Fwww.modelina.org)](https://www.modelina.org)
1010
[![Playground](https://img.shields.io/website?label=playground&url=https%3A%2F%2Fwww.modelina.org%2Fplayground)](https://www.modelina.org/playground) <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
11-
[![All Contributors](https://img.shields.io/badge/all_contributors-110-orange.svg?style=flat-square)](#contributors-)
11+
[![All Contributors](https://img.shields.io/badge/all_contributors-111-orange.svg?style=flat-square)](#contributors-)
1212
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1313

1414

@@ -469,6 +469,7 @@ Thanks go out to these wonderful people ([emoji key](https://allcontributors.org
469469
<td align="center" valign="top" width="14.28%"><a href="https://github.com/reinaut-krekels-acerta"><img src="https://avatars.githubusercontent.com/u/93973899?v=4?s=100" width="100px;" alt="Reinaut Krekels"/><br /><sub><b>Reinaut Krekels</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=reinaut-krekels-acerta" title="Code">💻</a> <a href="https://github.com/asyncapi/modelina/commits?author=reinaut-krekels-acerta" title="Tests">⚠️</a> <a href="https://github.com/asyncapi/modelina/issues?q=author%3Areinaut-krekels-acerta" title="Bug reports">🐛</a></td>
470470
<td align="center" valign="top" width="14.28%"><a href="https://github.com/412b"><img src="https://avatars.githubusercontent.com/u/12436202?v=4?s=100" width="100px;" alt="Kirill Plyashkevich"/><br /><sub><b>Kirill Plyashkevich</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=412b" title="Code">💻</a> <a href="https://github.com/asyncapi/modelina/commits?author=412b" title="Tests">⚠️</a></td>
471471
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Exar04"><img src="https://avatars.githubusercontent.com/u/109629956?v=4?s=100" width="100px;" alt="Dhadve Yash"/><br /><sub><b>Dhadve Yash</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=Exar04" title="Code">💻</a> <a href="https://github.com/asyncapi/modelina/commits?author=Exar04" title="Tests">⚠️</a></td>
472+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jadinm"><img src="https://avatars.githubusercontent.com/u/4190063?v=4?s=100" width="100px;" alt="Mathieu Jadin"/><br /><sub><b>Mathieu Jadin</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=jadinm" title="Code">💻</a> <a href="https://github.com/asyncapi/modelina/commits?author=jadinm" title="Tests">⚠️</a></td>
472473
</tr>
473474
</tbody>
474475
</table>

examples/integrate-with-react/package-lock.json

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

0 commit comments

Comments
 (0)