Skip to content

Schedule Community Meeting #51

Schedule Community Meeting

Schedule Community Meeting #51

name: Schedule Community Meeting
on:
workflow_dispatch:
inputs:
time:
description: 'Info about meeting time in UTC time zone in "HH:MM"(MM can be 00 or 30), like: 08:30 or 16:00. No PM or AM versions.'
required: true
date:
description: 'Date in a form like: 2022-04-05 where 04 is a month and 05 is a day number.'
required: true
meeting_banner:
description: 'Meeting banner(image) URL'
required: false
jobs:
setup-community-meeting:
uses: ./.github/workflows/create-event-workflow-reusable.yml
with:
time: ${{ github.event.inputs.time }}
date: ${{ github.event.inputs.date }}
meeting_banner: ${{ github.event.inputs.meeting_banner }}
meeting_name: Community Meeting
meeting_desc: This is a community meeting to regularly talk in open about important topics around AsyncAPI Initiative.
host: [email protected]
alternative_host: '[email protected],[email protected],[email protected]'
issue_template_path: .github/workflows/create-event-helpers/issues_templates/community.md
create_zoom: true
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
ZOOM_ACCOUNT_ID: ${{ secrets.ZOOM_ACCOUNT_ID }}
ZOOM_TOKEN: ${{ secrets.ZOOM_TOKEN }}
STREAM_URL: ${{ secrets.STREAM_URL }}
STREAM_KEY: ${{ secrets.STREAM_KEY }}
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }}
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }}
TWITTER_ACCESS_TOKEN_KEY: ${{ secrets.TWITTER_ACCESS_TOKEN_KEY }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}