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
3 changes: 3 additions & 0 deletions .github/workflows/check-version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main

permissions:
contents: read

jobs:
check-version-bump:
name: Enforce version bump when src/ is modified
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/commit-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- main

permissions:
contents: read

jobs:
commit-validation:
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/proto-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
- 'src/sap_cloud_sdk/core/auditlog_ng/proto/**'
- 'Makefile'

permissions:
contents: read

jobs:
verify-proto:
name: Verify generated proto code is up-to-date
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- main
types: [opened, synchronize, reopened]

permissions:
contents: read

jobs:
publish:
name: Publish to Artifactory
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reuse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- "main"

permissions:
contents: read

jobs:
check-reuse-compliance:
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
- cron: '0 */3 * * *'
workflow_dispatch:

permissions:
contents: write

jobs:
sync:
runs-on: ["self-hosted"]
Expand Down
Loading