Schedule Ad Hoc Meeting #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Schedule Ad Hoc 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 | |
name: | |
description: 'Provide short title for the meeting.' | |
required: true | |
desc: | |
description: 'Provide a description that explains meeting purpose' | |
required: true | |
meeting_banner: | |
description: 'Meeting banner(image) URL' | |
required: false | |
jobs: | |
setup-ad-hoc: | |
uses: ./.github/workflows/create-event-workflow-reusable.yml | |
with: | |
time: ${{ github.event.inputs.time }} | |
date: ${{ github.event.inputs.date }} | |
meeting_name: ${{ github.event.inputs.name }} | |
meeting_desc: ${{ github.event.inputs.desc }} | |
meeting_banner: ${{ github.event.inputs.meeting_banner }} | |
host: [email protected] | |
alternative_host: "[email protected],[email protected],[email protected],[email protected]" | |
issue_template_path: .github/workflows/create-event-helpers/issues_templates/ad-hoc.md | |
create_zoom: true | |
secrets: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
ZOOM_API_KEY: ${{ secrets.ZOOM_API_KEY }} | |
ZOOM_API_SECRET: ${{ secrets.ZOOM_API_SECRET }} | |
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 }} |