forked from knative/ux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update the new UX WG bi-weekly meeting time (knative#180)
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,19 +12,19 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: 'Bi-weekly UX WG meeting reminder' | ||
name: "Bi-weekly UX WG meeting reminder" | ||
|
||
env: | ||
# The date of the first run of the action. It has to be set to a date that is on the same weekday as the cron. | ||
# 12/11 is Monday, so the cron is set to run on Monday. | ||
# Every second week of the bi-weekly cycle, the action is going to be skipped. | ||
# The cron time can be set to any time of the day. | ||
FIRST_RUN_DATE: 2024-06-26 | ||
FIRST_RUN_DATE: 2024-09-30 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: ## At 1PM UTC on every other Wednesday (1 day before the meeting time, which is 1 PM UTC on every other Thursday) | ||
- cron: 0 13 * * 3 | ||
schedule: ## At 6PM UTC on every other Monday (1 day before the meeting time, which is 6 PM UTC on every other Tuesday) | ||
- cron: 0 18 * * 1 | ||
|
||
jobs: | ||
weekindex: | ||
|
@@ -54,7 +54,7 @@ jobs: | |
name: biweekly-ux-wg-meeting-reminder | ||
needs: weekindex | ||
if: ${{ needs.weekindex.outputs.weekindex == 0 }} | ||
runs-on: 'ubuntu-latest' | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Post reminder to Slack | ||
uses: rtCamp/[email protected] | ||
|
@@ -63,6 +63,6 @@ jobs: | |
SLACK_USERNAME: github-actions | ||
SLACK_TITLE: Bi-weekly UX WG meeting reminder | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
MSG_MINIMAL: 'true' | ||
SLACK_CHANNEL: 'knative-ux' | ||
MSG_MINIMAL: "true" | ||
SLACK_CHANNEL: "knative-ux" | ||
SLACK_MESSAGE: The bi-weekly UX WG meeting will be happening tomorrow at this time (in 24 hours). You can 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) |