Skip to content
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/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

jobs:
build:
name: Build SDK
name: Build & Package
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
check-version-bump:
name: Enforce version bump when src/ is modified
name: Check Version Bump
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
steps:
- name: Checkout repository
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/commit-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:

jobs:
commit-validation:
name: Commit Validation
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
steps:
- name: Checkout repository
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ on:

jobs:
integration-tests:
name: Integration Tests
# Skip integration tests for PRs from forks (they don't have access to secrets)
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/proto-verify.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Proto generation check
name: Proto Generation Check

on:
pull_request:
Expand All @@ -20,7 +20,7 @@ permissions:

jobs:
verify-proto:
name: Verify generated proto code is up-to-date
name: Proto Generation Check
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
publish:
name: Publish to Artifactory
name: Publish Package to Internal Artifactory
runs-on: ["self-hosted"]
environment: 'artifactory:sap-cloud-sdk'
if: ${{ !contains(github.server_url, 'github.com') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
permissions:
contents: read
id-token: write
name: Publish to PyPI
name: Publish Package to PyPI
runs-on: ubuntu-latest
environment: 'pypi:sap-cloud-sdk'
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reuse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:

jobs:
check-reuse-compliance:
name: REUSE Compliance Check
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
steps:
- uses: actions/checkout@v6
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:

jobs:
sync:
name: Sync from External Repository
runs-on: ["self-hosted"]
if: ${{ !contains(github.server_url, 'github.com') && contains(github.repository, 'application-foundation') }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

jobs:
test:
name: Unit Tests with Coverage
name: Tests & Coverage
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
steps:
- name: "Checkout Repository"
Expand Down
Loading