Skip to content

Commit

Permalink
added example of thread_ts being used in a followup step
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengill committed May 4, 2022
1 parent 3bdd566 commit 02d150b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@ jobs:
- name: Check Action output is not empty
run: test -n "${{ steps.slackToken.outputs.time }}"

- name: Post Threaded Response
id: slackThreadResponse
uses: ./
with:
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
payload: |
{
"text": "Details",
"thread_ts": "${{ steps.slackToken.outputs.thread_ts }}"
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}

integration_test_webhook:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 02d150b

Please sign in to comment.