mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Waiting to run
Web App CI / check-types (push) Waiting to run
Web App CI / test (push) Waiting to run
Web App CI / build (push) Waiting to run
* s/Server CI (PR|Master)/Server CI/ * whitespace changes * fixup! s/Server CI (PR|Master)/Server CI/ * Check workflow event type instead of name for PR reporting Address code review feedback by checking github.event.workflow_run.event instead of github.event.workflow_run.name since Server CI now runs for both PRs and master branches. --------- Co-authored-by: Mattermost Build <build@mattermost.com>
24 lines
703 B
YAML
24 lines
703 B
YAML
## Upload sentry results when Server CI Master is completed
|
|
name: Sentry Upload
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- "Server CI"
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
sentry:
|
|
name: Send build info to sentry
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.MM_SERVER_SENTRY_AUTH_TOKEN }}
|
|
SENTRY_ORG: ${{ secrets.MM_SERVER_SENTRY_ORG }}
|
|
SENTRY_PROJECT: ${{ secrets.MM_SERVER_SENTRY_PROJECT }}
|
|
steps:
|
|
- name: cd/Checkout mattermost project
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: cd/Create Sentry release
|
|
uses: getsentry/action-release@00ed2a6cc2171514e031a0f5b4b3cdc586dc171a # v3.1.1
|
|
|