Skip to content

Commit 7883f7f

Browse files
ci: jira-576 Added the slack alert code
ci: Added the slack alert code
2 parents 304be26 + 3940e80 commit 7883f7f

File tree

2 files changed

+165
-0
lines changed

2 files changed

+165
-0
lines changed
+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
name: slack-alert-action
2+
description: "Action to send slack payload to public-sdk-events channel"
3+
4+
inputs:
5+
heading_text:
6+
required: true
7+
description: "Heading of the slack payload"
8+
alert_type:
9+
required: true
10+
description: "type of the slack alert"
11+
job_status:
12+
required: true
13+
description: "status of the job"
14+
XERO_SLACK_WEBHOOK_URL:
15+
required: true
16+
description: "webhook url for channel - public-sdk-events"
17+
job_url:
18+
required: true
19+
description: "job run id link"
20+
button_type:
21+
required: true
22+
description: "color for the check logs button"
23+
package_version:
24+
required: true
25+
description: "released package version"
26+
repo_link:
27+
required: true
28+
description: "link of the repo"
29+
30+
31+
runs:
32+
using: "composite"
33+
34+
steps:
35+
36+
- name: Send slack notification
37+
id: slack
38+
uses: slackapi/[email protected]
39+
env:
40+
SLACK_WEBHOOK_URL: ${{inputs.XERO_SLACK_WEBHOOK_URL}}
41+
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
42+
with:
43+
payload: |
44+
{
45+
"blocks": [
46+
{
47+
"type": "rich_text",
48+
"elements": [
49+
{
50+
"type": "rich_text_section",
51+
"elements": [
52+
{
53+
"type": "text",
54+
"text": "${{inputs.heading_text}} ",
55+
"style": {
56+
"bold": true
57+
}
58+
},
59+
{
60+
"type": "emoji",
61+
"name": "${{inputs.alert_type}}"
62+
}
63+
]
64+
}
65+
]
66+
},
67+
{
68+
"type": "divider"
69+
},
70+
{
71+
"type": "section",
72+
"fields": [
73+
{
74+
"type": "mrkdwn",
75+
"text": "*Repository:* \n ${{inputs.repo_link}}"
76+
},
77+
{
78+
"type": "mrkdwn",
79+
"text": "*Status:*\n ${{inputs.job_status}}"
80+
},
81+
{
82+
"type": "mrkdwn",
83+
"text": "*Package Version:*\n ${{inputs.package_version}}"
84+
}
85+
]
86+
},
87+
{
88+
"type": "actions",
89+
"elements": [
90+
{
91+
"type": "button",
92+
"text": {
93+
"type": "plain_text",
94+
"text": "Check the logs",
95+
"emoji": true
96+
},
97+
"style": "${{inputs.button_type}}",
98+
"url": "${{inputs.job_url}}"
99+
}
100+
]
101+
}
102+
]
103+
}

.github/workflows/publish.yml

+62
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ jobs:
77
publish:
88
runs-on: ubuntu-latest
99

10+
outputs:
11+
release_number: ${{steps.get_latest_release_number.outputs.release_tag}}
12+
permissions:
13+
contents: write
14+
pull-requests: write
15+
1016
steps:
1117
- name: Checkout Xero-Java repo
1218
uses: actions/checkout@v4
@@ -25,6 +31,16 @@ jobs:
2531
server-password: MAVEN_PASSWORD
2632
gpg-passphrase: GPG_PASSPHRASE
2733

34+
- name: Fetch Latest release number
35+
id: get_latest_release_number
36+
run: |
37+
latest_version=$(gh release view --json tagName --jq '.tagName')
38+
echo "Latest release version is - $latest_version"
39+
echo "::set-output name=release_tag::$latest_version"
40+
working-directory: Xero-Java
41+
env:
42+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
43+
2844
- name: Import GPG Key
2945
run: |
3046
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
@@ -40,3 +56,49 @@ jobs:
4056
MAVEN_PASSWORD: ${{ secrets.MAVEN_TOKEN }}
4157
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
4258
working-directory: Xero-Java
59+
60+
notify-slack-on-success:
61+
runs-on: ubuntu-latest
62+
needs: publish
63+
if: success()
64+
steps:
65+
- name: Checkout Xero-Java repo
66+
uses: actions/checkout@v4
67+
with:
68+
repository: XeroAPI/Xero-Java
69+
path: Xero-Java
70+
71+
- name: Send slack notification on success
72+
uses: ./Xero-Java/.github/actions/notify-slack
73+
with:
74+
heading_text: "Publish job has succeeded !"
75+
alert_type: "thumbsup"
76+
job_status: "Success"
77+
XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}}
78+
job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"
79+
button_type: "primary"
80+
package_version: ${{needs.publish.outputs.release_number}}
81+
repo_link: ${{github.server_url}}/${{github.repository}}
82+
83+
notify-slack-on-failure:
84+
runs-on: ubuntu-latest
85+
needs: publish
86+
if: failure()
87+
steps:
88+
- name: Checkout Xero-Java repo
89+
uses: actions/checkout@v4
90+
with:
91+
repository: XeroAPI/Xero-Java
92+
path: Xero-Java
93+
94+
- name: Send slack notification on failure
95+
uses: ./Xero-Java/.github/actions/notify-slack
96+
with:
97+
heading_text: "Publish job has failed !"
98+
alert_type: "alert"
99+
job_status: "Failed"
100+
XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}}
101+
job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"
102+
button_type: "danger"
103+
package_version: ${{needs.publish.outputs.release_number}}
104+
repo_link: ${{github.server_url}}/${{github.repository}}

0 commit comments

Comments
 (0)