2023-10-05 08:32:19 +00:00
|
|
|
name: Send a Slack notification when a PR contains rest api changes
|
2023-10-05 09:21:27 +00:00
|
|
|
|
2023-10-05 08:32:19 +00:00
|
|
|
on:
|
|
|
|
pull_request_target:
|
|
|
|
types: [labeled]
|
|
|
|
|
|
|
|
permissions: {}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
send-slack-notification-when-pr-contains-rest-api-changes:
|
|
|
|
if: "${{ github.event.label.name == 'contains: rest api change' && (github.event.pull_request.state == 'open' || github.event.pull_request.merged) }}"
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Wait 2 minutes for other labelling jobs to finish
|
|
|
|
run: sleep 2m
|
|
|
|
shell: bash
|
2023-10-09 15:54:59 +00:00
|
|
|
|
|
|
|
- name: Calculate test date
|
|
|
|
id: calculate_date
|
|
|
|
run: |
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Get the day of the week of the merged PR (0 for Sunday, 1 for Monday, etc.)
|
|
|
|
MERGE_DAY_OF_WEEK=$(date -u -d "${{ github.event.pull_request.merged_at }}" +"%u")
|
|
|
|
|
|
|
|
# Calculate days until the next Thursday after the merge
|
|
|
|
# If the merge is on Thursday, this will give 7 (i.e., next week's Thursday)
|
|
|
|
DAYS_UNTIL_NEXT_THURSDAY=$(( (4 + 7 - MERGE_DAY_OF_WEEK) % 7 ))
|
|
|
|
|
|
|
|
# If DAYS_UNTIL_NEXT_THURSDAY is 0, the merge was on a Thursday, so we set it to 7 to get the next Thursday
|
|
|
|
if [ $DAYS_UNTIL_NEXT_THURSDAY -eq 0 ]; then
|
|
|
|
DAYS_UNTIL_NEXT_THURSDAY=7
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Calculate the date for the next Thursday after the merge
|
|
|
|
THURSDAY_AFTER_MERGE=$(date -u -d "${{ github.event.pull_request.merged_at }} + $DAYS_UNTIL_NEXT_THURSDAY days" +"%Y-%m-%d")
|
|
|
|
WOOAF_RELEASE_DATE=$(date -u -d "${THURSDAY_AFTER_MERGE} + 6 days" +"%Y-%m-%d")
|
|
|
|
TEST_DATE_MESSAGE="Thursday, $THURSDAY_AFTER_MERGE. (Targeting release on $WOOAF_RELEASE_DATE)"
|
|
|
|
echo "TEST_DATE_MESSAGE=${TEST_DATE_MESSAGE}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Determine Milestone Date
|
|
|
|
id: get_milestone_date
|
|
|
|
run: |
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
MILESTONE_TITLE="${{ github.event.pull_request.milestone.title }}"
|
|
|
|
MILESTONE_DATE="Undefined"
|
|
|
|
|
|
|
|
# Mapping of milestone titles to release dates
|
|
|
|
declare -A MILESTONE_DATES
|
|
|
|
MILESTONE_DATES=(
|
|
|
|
["8.0.0"]="2023-08-08"
|
|
|
|
["8.1.0"]="2023-09-12"
|
|
|
|
["8.2.0"]="2023-10-10"
|
|
|
|
["8.3.0"]="2023-11-14"
|
|
|
|
["8.4.0"]="2023-12-12"
|
|
|
|
["8.5.0"]="2024-01-09"
|
|
|
|
["8.6.0"]="2024-02-13"
|
|
|
|
["8.7.0"]="2024-03-12"
|
|
|
|
["8.8.0"]="2024-04-09"
|
|
|
|
["8.9.0"]="2024-05-14"
|
|
|
|
["9.0.0"]="2024-06-11"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check if the milestone title exists in our predefined list and get the date
|
|
|
|
if [[ -v "MILESTONE_DATES[${MILESTONE_TITLE}]" ]]; then
|
|
|
|
MILESTONE_DATE=${MILESTONE_DATES[${MILESTONE_TITLE}]}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Export for later steps
|
|
|
|
echo "MILESTONE_DATE=${MILESTONE_DATE}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
# Notify Slack Step
|
2023-10-05 08:32:19 +00:00
|
|
|
- name: Notify Slack
|
|
|
|
uses: archive/github-actions-slack@d9dae40827adf93bddf939db6552d1e392259d7d
|
|
|
|
id: notify
|
|
|
|
with:
|
|
|
|
slack-bot-user-oauth-access-token: ${{ secrets.TEST_ASSISTANCE_BOT_TOKEN }}
|
2023-10-09 18:44:01 +00:00
|
|
|
slack-channel: ${{ secrets.WOO_CORE_REST_API_CHANGES_SLACK_CHANNEL }}
|
2023-10-05 08:32:19 +00:00
|
|
|
slack-text: |
|
|
|
|
<${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>
|
|
|
|
*Labels:* ${{ join(github.event.pull_request.labels.*.name, ', ') }}
|
2023-10-09 15:54:59 +00:00
|
|
|
*Monthly Release Milestone:* <${{ github.event.pull_request.milestone.html_url }}|${{ github.event.pull_request.milestone.title }}> (Release Date: ${{ env.MILESTONE_DATE }})
|
|
|
|
*WooAF (weekly) Timeline: this PR can be tested from:* ${{ env.TEST_DATE_MESSAGE }}
|
|
|
|
Please visit the <#${{ secrets.WOO_CORE_RELEASES_SLACK_CHANNEL }}> to obtain the latest WooAF build for testing.
|
2023-10-05 08:32:19 +00:00
|
|
|
slack-optional-unfurl_links: false
|
|
|
|
slack-optional-unfurl_media: false
|
2023-10-09 15:54:59 +00:00
|
|
|
|