Skip to content

ci: Streamline naming of CI workflows #11656

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/flaky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ body:
id: job-name
attributes:
label: Name of Job
placeholder: Build & Test / Nextjs (Node 14) Tests
placeholder: "CI: Build & Test / Nextjs (Node 14) Tests"
description: name of job as reported in the status report
validations:
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Gitflow - Auto prepare release
name: "Gitflow: Auto prepare release"
on:
pull_request:
types:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Build & Test'
name: 'CI: Build & Test'
on:
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Canary Tests'
name: 'CI: Canary Tests'
on:
schedule:
# Run every day at midnight
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clear-cache.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Clear all GHA caches
name: "Action: Clear all GHA caches"
on:
workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: 'CodeQL'
name: 'CI: CodeQL'

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/enforce-license-compliance.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Enforce License Compliance
name: "CI: Enforce License Compliance"

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flaky-test-detector.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Detect flaky tests'
name: 'CI: Detect flaky tests'
on:
workflow_dispatch:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitflow-sync-develop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Gitflow - Sync master into develop
name: "Gitflow: Sync master into develop"
on:
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-package-label.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Tag issue with package label'
name: 'Automation: Tag issue with package label'

on:
issues:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-size-info.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Add size info to release
name: "Automation: Add size info to release"
on:
release:
types:
Expand Down Expand Up @@ -27,4 +27,4 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
version: ${{ steps.get_version.outputs.version }}
workflow_name: 'Build & Test'
workflow_name: 'CI: Build & Test'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Prepare Release
name: "Action: Prepare Release"
on:
workflow_dispatch:
inputs:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he
faster, so we can get back to enjoying technology. If you want to join us
[<kbd>**Check out our open positions**</kbd>](https://sentry.io/careers/)_

![Build & Test](https://github.com/getsentry/sentry-javascript/workflows/Build%20&%20Test/badge.svg)
[![codecov](https://codecov.io/gh/getsentry/sentry-javascript/branch/master/graph/badge.svg)](https://codecov.io/gh/getsentry/sentry-javascript)
![Build & Test](https://github.com/getsentry/sentry-javascript/workflows/CI:%20Build%20&%20Test/badge.svg)
[![codecov](https://codecov.io/gh/getsentry/sentry-javascript/branch/develop/graph/badge.svg)](https://codecov.io/gh/getsentry/sentry-javascript)
[![npm version](https://img.shields.io/npm/v/@sentry/core.svg)](https://www.npmjs.com/package/@sentry/core)
[![Discord](https://img.shields.io/discord/621778831602221064)](https://discord.gg/Ww9hbqr)

Expand Down