Skip to content

Commit 3b53905

Browse files
authored
#73 added thread-ts as an output (#74)
* added thread-ts as an output. Fixes #73 * added example of thread_ts being used in a followup step
1 parent 9724607 commit 3b53905

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

.github/workflows/main.yml

+13
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,19 @@ jobs:
3232
- name: Check Action output is not empty
3333
run: test -n "${{ steps.slackToken.outputs.time }}"
3434

35+
- name: Post Threaded Response
36+
id: slackThreadResponse
37+
uses: ./
38+
with:
39+
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
40+
payload: |
41+
{
42+
"text": "This message should be posted as a response in thread",
43+
"thread_ts": "${{ steps.slackToken.outputs.thread_ts }}"
44+
}
45+
env:
46+
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
47+
3548
integration_test_webhook:
3649
runs-on: ubuntu-latest
3750
steps:

action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ inputs:
1616
outputs:
1717
time: # id of output
1818
description: 'The time'
19+
thread_ts: # timestamp on the message that was posted when using bot token
20+
description: 'The timestamp on the message that was posted into Slack when using bot token'
1921
runs:
2022
using: 'node12'
2123
main: 'dist/index.js'

src/slack-send.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ module.exports = async function slackSend(core) {
3131

3232
const payloadFilePath = core.getInput('payload-file-path');
3333

34+
let webResponse;
35+
3436
if (payloadFilePath && !payload) {
3537
try {
3638
payload = await fs.readFile(path.resolve(payloadFilePath), 'utf-8');
@@ -68,7 +70,7 @@ module.exports = async function slackSend(core) {
6870

6971
if (message.length > 0 || payload) {
7072
// post message
71-
await web.chat.postMessage({ channel: channelId, text: message, ...(payload || {}) });
73+
webResponse = await web.chat.postMessage({ channel: channelId, text: message, ...(payload || {}) });
7274
} else {
7375
console.log('Missing slack-message or payload! Did not send a message via chat.postMessage with botToken', { channel: channelId, text: message, ...(payload) });
7476
throw new Error('Missing message content, please input a valid payload or message to send. No Message has been send.');
@@ -112,6 +114,12 @@ module.exports = async function slackSend(core) {
112114
}
113115
}
114116

117+
if (webResponse && webResponse.ok) {
118+
// return the thread_ts if it exists, if not return the ts
119+
const thread_ts = webResponse.thread_ts ? webResponse.thread_ts : webResponse.ts;
120+
core.setOutput('thread_ts', thread_ts);
121+
}
122+
115123
const time = (new Date()).toTimeString();
116124
core.setOutput('time', time);
117125
} catch (error) {

test/slack-send-test.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const github = require('@actions/github');
55
const rewiremock = require('rewiremock/node');
66

77
const ChatStub = {
8-
postMessage: sinon.spy(),
8+
postMessage: sinon.fake.resolves({ ok: true, thread_ts: '1503435956.000247' }),
99
};
1010
/* eslint-disable-next-line global-require */
1111
rewiremock(() => require('@slack/web-api')).with({
@@ -57,6 +57,8 @@ describe('slack-send', () => {
5757
fakeCore.getInput.withArgs('slack-message').returns('who let the dogs out?');
5858
fakeCore.getInput.withArgs('channel-id').returns('C123456');
5959
await slackSend(fakeCore);
60+
assert.equal(fakeCore.setOutput.firstCall.firstArg, 'thread_ts', 'Output name set to thread_ts');
61+
assert(fakeCore.setOutput.firstCall.lastArg.length > 0, 'Time output a non-zero-length string');
6062
assert.equal(fakeCore.setOutput.lastCall.firstArg, 'time', 'Output name set to time');
6163
assert(fakeCore.setOutput.lastCall.lastArg.length > 0, 'Time output a non-zero-length string');
6264
const chatArgs = ChatStub.postMessage.lastCall.firstArg;
@@ -74,6 +76,8 @@ describe('slack-send', () => {
7476
await slackSend(fakeCore);
7577

7678
// Assert
79+
assert.equal(fakeCore.setOutput.firstCall.firstArg, 'thread_ts', 'Output name set to thread_ts');
80+
assert(fakeCore.setOutput.firstCall.lastArg.length > 0, 'Time output a non-zero-length string');
7781
assert.equal(fakeCore.setOutput.lastCall.firstArg, 'time', 'Output name set to time');
7882
assert(fakeCore.setOutput.lastCall.lastArg.length > 0, 'Time output a non-zero-length string');
7983
const chatArgs = ChatStub.postMessage.lastCall.firstArg;

0 commit comments

Comments
 (0)