Skip to content

Commit 2460a25

Browse files
committed
chore(ci): Add consistent job naming
1 parent 1936411 commit 2460a25

File tree

8 files changed

+21
-19
lines changed

8 files changed

+21
-19
lines changed

.github/workflows/api-stability.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414

1515
jobs:
1616
api-stability:
17+
name: API Stability Check (${{ matrix.version }})
1718
runs-on: macos-15
1819
strategy:
1920
matrix:

.github/workflows/danger.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ on:
66

77
jobs:
88
danger:
9+
name: Danger
910
uses: getsentry/github-workflows/.github/workflows/danger.yml@v2

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ concurrency:
1919
cancel-in-progress: true
2020

2121
jobs:
22-
cocoapods:
23-
name: Integration Test
22+
test:
23+
name: Test
2424
runs-on: macos-15
2525
steps:
2626
- name: Checkout Repository

.github/workflows/lint-clang-formatting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Code Formatting
1+
name: Lint Clang Formatting
22
on:
33
push:
44
branches:
@@ -25,10 +25,10 @@ on:
2525
- ".clang-format"
2626

2727
jobs:
28-
format-code:
28+
lint:
2929
# While ubuntu runners have clang-format preinstalled, they use an older version. We want to use the most recent one,
3030
# that we can easily install locally via brew.
31-
name: Check Formatting of Clang Format
31+
name: Lint
3232
runs-on: macos-15
3333
steps:
3434
- uses: actions/checkout@v4

.github/workflows/lint-dprint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# expensive. For example, dprint should run for markdown changes, but pod lib lint doesn't need to
33
# run for markdown changes. Therefore, we run it in an extra workflow.
44

5-
name: lint-dprint
5+
name: Lint dprint formatting
66
on:
77
push:
88
branches:
@@ -21,8 +21,8 @@ on:
2121
- "**/*.md"
2222

2323
jobs:
24-
lint-dprint:
25-
name: Run dprint
24+
lint:
25+
name: Lint
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v4

.github/workflows/lint-shellcheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# expensive. For example, pod lib lint doesn't need to run for sh changes. Therefore, we run it in an
33
# extra workflow.
44

5-
name: lint-shellcheck
5+
name: Lint Shellcheck
66
on:
77
push:
88
branches:
@@ -17,8 +17,8 @@ on:
1717
- "**/*.sh"
1818

1919
jobs:
20-
shellcheck:
21-
name: Run Shellcheck
20+
lint:
21+
name: Lint
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v4

.github/workflows/lint-swift-formatting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Code Formatting
1+
name: Lint Swift Formatting
22
on:
33
push:
44
branches:
@@ -15,8 +15,8 @@ on:
1515
- ".swiftlint.yml"
1616

1717
jobs:
18-
format-code:
19-
name: Check Formatting of Swiftlint Code
18+
lint:
19+
name: Lint
2020
runs-on: macos-15
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint
1+
name: Lint
22
on:
33
push:
44
branches:
@@ -29,8 +29,8 @@ concurrency:
2929
cancel-in-progress: true
3030

3131
jobs:
32-
swift-lint:
33-
name: Swift Lint
32+
lint:
33+
name: Lint
3434
runs-on: macos-14
3535
steps:
3636
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
- run: make analyze
5050

5151
lint-podspec:
52-
name: pod lint ${{ matrix.podspec}} ${{ matrix.library_type }} ${{ matrix.platform}}
52+
name: Lint podspec ${{ matrix.podspec}} ${{ matrix.library_type }} ${{ matrix.platform}}
5353
runs-on: macos-14
5454
strategy:
5555
fail-fast: false
@@ -67,7 +67,7 @@ jobs:
6767
run: ./scripts/pod-lib-lint.sh ${{ matrix.platform }} ${{ matrix.podspec}} ${{ matrix.library_type}}
6868

6969
lint-hybrid-sdk-podspec:
70-
name: pod lint Sentry/HybridSDK
70+
name: Lint Sentry/HybridSDK
7171
runs-on: macos-14
7272

7373
steps:

0 commit comments

Comments
 (0)