mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
[ACS-12465] Connect teams channel with github CI in cron multibrowser workflow for easier raporting (#5344)
* [ACS-12465] added teams raport * [ACS-12465] raport fix 1 * [ACS-12465] raport name update * [ACS-12465] sonar fix + small changes to formatting due to size limit * [ACS-12465] review fixes 2 * [ACS-12465] added warning for >2% failure rate and new column for only excluded * [ACS-12465] changed column naming
This commit is contained in:
@@ -64,3 +64,40 @@ jobs:
|
||||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
||||
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
|
||||
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
|
||||
|
||||
report-to-teams:
|
||||
name: "Aggregate results and notify Teams"
|
||||
needs: [chrome, firefox, webkit, msedge]
|
||||
if: ${{ always() }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: Before install
|
||||
uses: ./.github/actions/before-install
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci --ignore-scripts
|
||||
|
||||
- name: Download all blob reports
|
||||
id: download-blobs
|
||||
continue-on-error: true
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
pattern: blob-*
|
||||
path: all-blobs
|
||||
|
||||
- name: Retry blob download on failure
|
||||
if: steps.download-blobs.outcome == 'failure'
|
||||
continue-on-error: true
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
pattern: blob-*
|
||||
path: all-blobs
|
||||
|
||||
- name: Aggregate results and post Teams report
|
||||
continue-on-error: true
|
||||
env:
|
||||
TEAMS_WEBHOOK_URL: ${{ secrets.TEAMS_E2E_WEBHOOK_URL }}
|
||||
run: node .github/scripts/e2e-teams-report.js
|
||||
|
||||
Reference in New Issue
Block a user