Change to master efter merge #20
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test-11_v3-slack-message-blocks | |
| on: [push] | |
| permissions: {} | |
| jobs: | |
| slack-action: | |
| #if: ${{ false }} | |
| runs-on: ubuntu-24.04 | |
| name: Test 11 [ubuntu-24.04] | |
| steps: | |
| - name: Send Slack Message (Blocks) | |
| uses: archive/github-actions-slack@master | |
| id: send-message | |
| with: | |
| slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }} | |
| slack-channel: C046J5U2RGC | |
| slack-optional-blocks: >- | |
| [ | |
| { | |
| "block_id": "text1", | |
| "type": "section", | |
| "text": { | |
| "type": "mrkdwn", | |
| "text": "Test 11 (master) - Building repo *product-service*" | |
| } | |
| }, | |
| { | |
| "type": "divider" | |
| }, | |
| { | |
| "block_id": "text2", | |
| "type": "context", | |
| "elements": [ | |
| { | |
| "type": "image", | |
| "image_url": "https://upload.wikimedia.org/wikipedia/en/thumb/4/4c/Flag_of_Sweden.svg/1200px-Flag_of_Sweden.svg.png", | |
| "alt_text": "images" | |
| }, | |
| { | |
| "type": "plain_text", | |
| "text": "Estimated time: 1 min" | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "divider" | |
| } | |
| ] | |
| - name: Result from "Send Slack Message" | |
| run: echo '${{ steps.send-message.outputs.slack-result }}' |