Weekly UX working session reminder #7
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
# Copyright 2024 The Knative Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: 'Weekly UX working session reminder' | |
on: | |
workflow_dispatch: | |
schedule: # At 2:00 PM UTC on every Sunday (1 day before the meeting time, which is 2:00 PM UTC on every Monday) | |
- cron: 0 14 * * 0 | |
jobs: | |
remind: | |
name: weekly-ux-working-session-reminder | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Post reminder to Slack | |
uses: rtCamp/action-slack-notify@v2.2.1 | |
env: | |
SLACK_ICON: http://github.com/knative.png?size=48 | |
SLACK_USERNAME: github-actions | |
SLACK_TITLE: Weekly UX working session reminder | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
MSG_MINIMAL: 'true' | |
SLACK_CHANNEL: 'knative-ux' | |
SLACK_MESSAGE: The weekly UX working session will be happening tomorrow at this time (in 24 hours). Please join the [zoom meeting](https://zoom.us/j/98769530546), and add your agenda items to the [meeting notes](https://docs.google.com/document/d/1VCObP1IQFPDGzGG5KIgytQwX7RrU0tyeB7FGjkY0pPk/edit#heading=h.j4qyv6ihneq3) |