forked from mongodb/openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (91 loc) · 4.1 KB
/
changelog-report.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: 'Send Changelog Report'
on:
workflow_dispatch:
inputs:
start_date:
description: 'Start date for the changelog report. Example: 2024-01-01'
required: true
end_date:
description: 'End date for the changelog report. Example: 2024-01-10'
required: true
jobs:
send-changelog-report:
runs-on: ubuntu-latest
steps:
- name: Checkout repository (dev branch)
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
ref: dev
sparse-checkout:
changelog/
- name: Install FOASCLI
env:
foascli_version: ${{ vars.FOASCLI_VERSION }}
run: |
wget https://github.com/mongodb/openapi/releases/download/v"${foascli_version}"/mongodb-foas-cli_"${foascli_version}"_linux_x86_64.tar.gz -O foascli.tar.gz
tar -xzvf foascli.tar.gz
pushd mongodb-foas-cli_*
echo "$(pwd)/bin" >> "${GITHUB_PATH}"
popd
- name: Get Start and End Dates
id: get-dates
env:
START_DATE: ${{ inputs.start_date }}
END_DATE: ${{ inputs.end_date }}
run: |
start_date="${START_DATE}"
if [[ -z "${START_DATE}" ]]; then
echo "Start date not provided"
start_date=$(date -j -v-7d "+%Y-%m-%d")
echo "Using 7 days ago as start date: ${start_date}"
fi
end_date="${END_DATE}"
if [[ -z "${END_DATE}" ]]; then
echo "End date not provided"
end_date=$(date -j -v-1d "+%Y-%m-%d")
echo "Using yesterday as end date: ${end_date}"
fi
echo start_date="${start_date}" >> "${GITHUB_OUTPUT}"
echo end_date="${end_date}" >> "${GITHUB_OUTPUT}"
- name: Send Initial Slack Message
id: send-initial-slack-message
env:
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
SLACK_BEARER_TOKEN: ${{ secrets.SLACK_BEARER_TOKEN }}
START_DATE: ${{ steps.get-dates.outputs.start_date }}
END_DATE: ${{ steps.get-dates.outputs.end_date }}
run: |
message_id=$(curl -X POST -H 'Authorization: Bearer '"${SLACK_BEARER_TOKEN}" \
-H 'Content-type: application/json' \
--data '{"channel":"'"${SLACK_CHANNEL_ID}"'","text":":aileaft: List of API changes (*cloud-dev*) from *'"${START_DATE}"'* to *'"${END_DATE}"'*","parse": "full",}' https://slack.com/api/chat.postMessage | jq '.ts')
echo "response=${response}"
echo "message_id=${message_id}"
echo "message_id=${message_id}" >> "${GITHUB_OUTPUT}"
sleep 2 # wait for 2 second to avoid slack rate limit
- name: Get Changelog Entries
env:
START_DATE: ${{ steps.get-dates.outputs.start_date }}
END_DATE: ${{ steps.get-dates.outputs.end_date }}
run: |
changelog_entries=$(jq --arg start_date "${START_DATE}" --arg end_date "${END_DATE}" ' map(select(.date >= $start_date and .date <= $end_date))' changelog/internal/changelog-all.json)
echo "${changelog_entries}" > entries.json
- name: Upload entries for debugging
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a
with:
name: changelog_entries
path: |
entries.json
- name: Send Changelog Entries as Slack Thread
id: send-changelog-entries
env:
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
SLACK_BEARER_TOKEN: ${{ secrets.SLACK_BEARER_TOKEN }}
MESSAGE_ID: ${{ steps.send-initial-slack-message.outputs.message_id }}
run: |
messages=$(foascli changelog convert slack --path entries.jso --msg-id "${MESSAGE_ID}" -c "${SLACK_CHANNEL_ID}")
for message in "${messages[@]}"; do
curl -X POST -H 'Authorization: Bearer '"${SLACK_BEARER_TOKEN}" \
-H 'Content-type: application/json' \
--data "${message}" https://slack.com/api/chat.postMessage
sleep 2 # wait for 2 second to avoid slack rate limit
done