Skip to content

Commit 61b7e11

Browse files
chore: standardize workflow names across CI/CD workflows (#141)
1 parent 9fb1c8b commit 61b7e11

10 files changed

Lines changed: 11 additions & 7 deletions

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
build:
19-
name: Build SDK
19+
name: Build & Package
2020
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
2121
permissions:
2222
contents: read

.github/workflows/check-version-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
check-version-bump:
13-
name: Enforce version bump when src/ is modified
13+
name: Check Version Bump
1414
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
1515
steps:
1616
- name: Checkout repository

.github/workflows/commit-validation.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313

1414
jobs:
1515
commit-validation:
16+
name: Commit Validation
1617
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
1718
steps:
1819
- name: Checkout repository

.github/workflows/integration-tests.yml

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

1919
jobs:
2020
integration-tests:
21+
name: Integration Tests
2122
# Skip integration tests for PRs from forks (they don't have access to secrets)
2223
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
2324
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}

.github/workflows/proto-verify.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Proto generation check
1+
name: Proto Generation Check
22

33
on:
44
pull_request:
@@ -20,7 +20,7 @@ permissions:
2020

2121
jobs:
2222
verify-proto:
23-
name: Verify generated proto code is up-to-date
23+
name: Proto Generation Check
2424
runs-on: ubuntu-latest
2525

2626
steps:

.github/workflows/release-internal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
publish:
14-
name: Publish to Artifactory
14+
name: Publish Package to Internal Artifactory
1515
runs-on: ["self-hosted"]
1616
environment: 'artifactory:sap-cloud-sdk'
1717
if: ${{ !contains(github.server_url, 'github.com') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
id-token: write
12-
name: Publish to PyPI
12+
name: Publish Package to PyPI
1313
runs-on: ubuntu-latest
1414
environment: 'pypi:sap-cloud-sdk'
1515
steps:

.github/workflows/reuse.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313

1414
jobs:
1515
check-reuse-compliance:
16+
name: REUSE Compliance Check
1617
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
1718
steps:
1819
- uses: actions/checkout@v6

.github/workflows/sync.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permissions:
1010

1111
jobs:
1212
sync:
13+
name: Sync from External Repository
1314
runs-on: ["self-hosted"]
1415
if: ${{ !contains(github.server_url, 'github.com') && contains(github.repository, 'application-foundation') }}
1516
steps:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
test:
20-
name: Unit Tests with Coverage
20+
name: Tests & Coverage
2121
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
2222
steps:
2323
- name: "Checkout Repository"

0 commit comments

Comments
 (0)