Skip to content
Closed
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
05d9fd0
ci: update of files from global .github repo
Jul 21, 2025
9dcd5af
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 21, 2025
41676a2
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 22, 2025
225f1e1
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 22, 2025
fa5174c
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
7137635
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
ba5b2cd
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
c2c64b0
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
df0156e
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
96709b6
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
f93a856
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 24, 2025
1e0b8ba
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 27, 2025
ada63ac
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 27, 2025
5f3dd29
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 28, 2025
4ad659b
ci: update of files from global .github repo
Jul 28, 2025
bcf952e
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 28, 2025
b3cf119
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 28, 2025
fa19d8a
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Jul 29, 2025
5b7e114
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Aug 1, 2025
8963f8c
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Aug 1, 2025
a9344fb
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Aug 1, 2025
5393a30
Merge master into bot/update-files-from-global-repo
asyncapi-bot-eve Aug 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/notify-tsc-members-mention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ jobs:
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
TITLE: ${{ github.event.issue.title }}
with:
script: |
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
sendEmail('${{github.event.issue.html_url}}', '${{github.event.issue.title}}');
sendEmail('${{github.event.issue.html_url}}', process.env.TITLE);

pull_request:
if: github.event_name == 'pull_request_target' && contains(github.event.pull_request.body, '@asyncapi/tsc_members')
Expand Down Expand Up @@ -111,10 +112,11 @@ jobs:
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
TITLE: ${{ github.event.pull_request.title }}
with:
script: |
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
sendEmail('${{github.event.pull_request.html_url}}', '${{github.event.pull_request.title}}');
sendEmail('${{github.event.pull_request.html_url}}', process.env.TITLE);

discussion:
if: github.event_name == 'discussion' && contains(github.event.discussion.body, '@asyncapi/tsc_members')
Expand Down Expand Up @@ -156,10 +158,11 @@ jobs:
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
TITLE: ${{ github.event.discussion.title }}
with:
script: |
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
sendEmail('${{github.event.discussion.html_url}}', '${{github.event.discussion.title}}');
sendEmail('${{github.event.discussion.html_url}}', process.env.TITLE);

issue_comment:
if: ${{ github.event_name == 'issue_comment' && !github.event.issue.pull_request && contains(github.event.comment.body, '@asyncapi/tsc_members') }}
Expand Down Expand Up @@ -201,10 +204,11 @@ jobs:
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
TITLE: ${{ github.event.issue.title }}
with:
script: |
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
sendEmail('${{github.event.comment.html_url}}', '${{github.event.issue.title}}');
sendEmail('${{github.event.comment.html_url}}', process.env.TITLE);

pr_comment:
if: github.event_name == 'issue_comment' && github.event.issue.pull_request && contains(github.event.comment.body, '@asyncapi/tsc_members')
Expand Down Expand Up @@ -246,10 +250,11 @@ jobs:
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
TITLE: ${{ github.event.issue.title }}
with:
script: |
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
sendEmail('${{github.event.comment.html_url}}', '${{github.event.issue.title}}');
sendEmail('${{github.event.comment.html_url}}', process.env.TITLE);

discussion_comment:
if: github.event_name == 'discussion_comment' && contains(github.event.comment.body, '@asyncapi/tsc_members')
Expand Down Expand Up @@ -291,7 +296,8 @@ jobs:
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
TITLE: ${{ github.event.discussion.title }}
with:
script: |
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
sendEmail('${{github.event.comment.html_url}}', '${{github.event.discussion.title}}');
sendEmail('${{github.event.comment.html_url}}', process.env.TITLE);
Loading