Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/code_test_pipeline.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code Test Pipeline
name: CI Pipeline
on:
pull_request:
branches: ["dev", "main"]
Expand Down Expand Up @@ -73,3 +73,20 @@ jobs:
if: always()
with:
files: "**/build/test-results/test/TEST-*.xml"

report-to-slack:
runs-on: ubuntu-latest
needs: [ unit-test ]
steps:
- name: Report to Slack Channel
uses: slackapi/[email protected]
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
text: "*GitHub Action build result*: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
blocks:
- type: "section"
text:
type: "mrkdwn"
text: "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
Loading