Skip to content

Commit

Permalink
Merge branch 'master' into newsletter
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot authored Nov 15, 2024
2 parents 8388122 + 384da22 commit 3042572
Show file tree
Hide file tree
Showing 13 changed files with 614 additions and 293 deletions.
45 changes: 45 additions & 0 deletions .coderrabbit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
language: "en-US"
reviews:
profile: "assertive"
request_changes_workflow: false
high_level_summary: true
poem: true
review_status: true
auto_review:
enabled: true
tools:
spellcheck:
enabled: true
markdownlint:
enabled: true
biome:
enabled: true
github-checks:
enabled: true
timeout_ms: 180000
languagetool:
enabled: true
enabled_only: false
level: default
hadolint:
enabled: true
yamllint:
enabled: true
gitleaks:
enabled: true
eslint:
enabled: true
actionlint:
enabled: true
semgrep:
enabled: true
chat:
auto_reply: true
knowledge_base:
opt_out: false
learnings:
scope: "local"
issues:
scope: "local"
pull_requests:
scope: "local"
5 changes: 3 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"env": {
"browser": true,
"es2021": true,
"node": true
"node": true,
"jest": true
},
"plugins": [
"react",
Expand Down Expand Up @@ -313,4 +314,4 @@
}
}
]
}
}
28 changes: 28 additions & 0 deletions .github/workflows/update-maintainers-trigger.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# 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

name: Trigger MAINTAINERS.yaml file update

on:
push:
branches: [ master ]
paths:
# Check all valid CODEOWNERS locations:
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location
- 'CODEOWNERS'
- '.github/CODEOWNERS'
- '.docs/CODEOWNERS'

jobs:
trigger-maintainers-update:
name: Trigger updating MAINTAINERS.yaml because of CODEOWNERS change
runs-on: ubuntu-latest

steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # https://github.com/peter-evans/repository-dispatch/releases/tag/v3.0.0
with:
# The PAT with the 'public_repo' scope is required
token: ${{ secrets.GH_TOKEN }}
repository: ${{ github.repository_owner }}/community
event-type: trigger-maintainers-update
14 changes: 7 additions & 7 deletions components/campaigns/banners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ export function shouldShowBanner(cfpDeadline: string) {

export const banners = [
{
title: "AsyncAPI Online Conference'24",
city: 'YouTube',
dateLocation: '30th of October, 2024 | YouTube & LinkedIn',
cfaText: 'Join us Live',
eventName: 'the AsyncAPI Online Conference',
cfpDeadline: '2024-10-30T06:00:00Z',
link: 'https://www.youtube.com/live/F9wHxd-v2f0?si=kPCqgUzqAKC0FaqJ'
title: 'AsyncAPI Conference',
city: 'Paris Edition',
dateLocation: '5th of December, 2024 | France, Paris',
cfaText: 'Get Your Tickets',
eventName: 'the AsyncAPI Conf in Paris',
cfpDeadline: '2024-12-01T06:00:00Z',
link: 'https://conference.asyncapi.com/#tickets'
}
];
66 changes: 0 additions & 66 deletions config/AMBASSADORS_MEMBERS.json
Original file line number Diff line number Diff line change
Expand Up @@ -287,72 +287,6 @@
}
]
},
{
"name": "Jesse Menning",
"github": "jessemenning",
"twitter": "JesseMenning",
"bio": "Jesse Menning teams with companies and government agencies to design event-driven architecture and microservices at scale. To guide those discussions, I draw upon more than 15 years of integration architecture and implementation experience, particularly with IBM and Solace platforms. I've been involved with AsyncAPI since 2020, along with other open-source initiatives such as CloudEvents and OpenTelemetry.",
"linkedin": "jesse-menning",
"company": "Solace",
"title": "Architect, Office of the CTO at Solace",
"img": "https://avatars.githubusercontent.com/u/62108913?v=4",
"contributions": [
{
"type": "article",
"title": "AsyncAPI 2.3 Adds Solace Bindings to Unlock Full Power of PubSub+",
"date": {
"year": 2022,
"month": "January"
},
"link": "https://solace.com/blog/asyncapi-adds-solace-bindings/"
},
{
"type": "article",
"title": "Align Production Reality and Event Documentation with the AsyncAPI Discovery Tool",
"date": {
"year": 2021,
"month": "November"
},
"link": "https://solace.com/blog/asyncapi-discovery-tool/"
},
{
"type": "article",
"title": "AsyncAPI vs. OpenAPI: Answers to Your Burning Questions About the Two Leading API Specs",
"date": {
"year": 2021,
"month": "June"
},
"link": "https://solace.com/blog/asyncapi-vs-openapi/"
},
{
"type": "article",
"title": "AsyncAPI, CloudEvents, OpenTelemetry: Which Event-Driven Specs Should Your DevOps Include?",
"date": {
"year": 2021,
"month": "March"
},
"link": "https://solace.com/blog/asyncapi-cloudevents-opentelemetry-event-driven-specs-devops/"
},
{
"type": "presentation",
"title": "Future of AsyncAPI, Panel discussion, AsyncAPI Conference",
"date": {
"year": 2021,
"month": "November"
},
"link": "https://www.youtube.com/watch?v=3EeMHhbwyOQ"
},
{
"type": "presentation",
"title": "Thinking Out Loud #4 — with Jesse Menning",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=eJewFUR-OaM"
}
]
},
{
"name": "Ludovic Dussart",
"github": "M3lkior",
Expand Down
17 changes: 15 additions & 2 deletions config/MAINTAINERS.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@
"twitter": "ldussart",
"availableForHire": false,
"company": "zatsit",
"isTscMember": true,
"isTscMember": false,
"repos": [
"avro-schema-parser"
],
Expand Down Expand Up @@ -343,7 +343,7 @@
"linkedin": "nektarios-fifes-372740220",
"slack": "U01SE93Q48N",
"availableForHire": true,
"isTscMember": true,
"isTscMember": false,
"repos": [
"simulator"
],
Expand Down Expand Up @@ -983,5 +983,18 @@
"kotlin-asyncapi"
],
"githubID": 758568
},
{
"name": "Ashmit Jagtap",
"github": "ashmit-coder",
"linkedin": "ashmit-jagtap",
"twitter": "AshmitJagtap",
"slack": "U06RA7GDHU1",
"availableForHire": true,
"isTscMember": true,
"repos": [
"conference-website"
],
"githubID": 69006513
}
]
14 changes: 7 additions & 7 deletions config/meetings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
"banner": "",
"date": "2024-08-13T18:00:00.000Z"
},
{
"title": "Community Meeting",
"calLink": "https://www.google.com/calendar/event?eid=aG45bXYwN2I4NWthanBpZ290bzRnbjE1cWMgY19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bn",
"url": "https://github.com/asyncapi/community/issues/1335",
"banner": "https://github.com/user-attachments/assets/9d68eacc-c5b3-4f49-a7a2-4120ead380b0",
"date": "2024-08-06T08:00:00.000Z"
},
{
"title": "Community Meeting",
"calLink": "https://www.google.com/calendar/event?eid=cnIwc3U0c2o1a3FoaWM0M2VvZXFjNzJvZzQgY19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bn",
Expand Down Expand Up @@ -138,5 +131,12 @@
"url": "https://github.com/asyncapi/community/issues/1569",
"banner": "https://github.com/user-attachments/assets/0cdfc741-e61d-4710-bb0a-af9f7485ff9a",
"date": "2024-11-01T13:00:00.000Z"
},
{
"title": "Marketing WG Meeting",
"calLink": "https://www.google.com/calendar/event?eid=dHVrZHMyYm9kMzcydmJpYW5qMmdpcWU5MW8gY19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bn",
"url": "https://github.com/asyncapi/community/issues/1589",
"banner": "",
"date": "2024-11-19T14:00:00.000Z"
}
]
Loading

0 comments on commit 3042572

Please sign in to comment.