Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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/actions/version-bumping/maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Bump Maven Version
uses: sap/pull-request-semver-bumper@main
uses: sap/pull-request-semver-bumper@v1
env:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/version-bumping/npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Bump NPM Version
uses: sap/pull-request-semver-bumper@main
uses: sap/pull-request-semver-bumper@v1
with:
type: npm
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/version-bumping/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Bump Python Version
uses: sap/pull-request-semver-bumper@main
uses: sap/pull-request-semver-bumper@v1
with:
type: python
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/version-bumping/version-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Bump Version File
uses: sap/pull-request-semver-bumper@main
uses: sap/pull-request-semver-bumper@v1
with:
type: version-file
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
- opened
- synchronize
- reopened
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down Expand Up @@ -47,7 +46,7 @@ jobs:
run: npm run build

- name: Commit build artifacts (same-repo PRs only)
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
if: github.event.pull_request.head.repo.full_name == github.repository
uses: EndBug/add-and-commit@v9
with:
add: "."
Expand All @@ -56,7 +55,7 @@ jobs:
push: true

- name: Fail if dist is dirty (Forked PRs only)
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
if: github.event.pull_request.head.repo.full_name != github.repository
working-directory: .github/actions/core
run: |
if [[ -n $(git status --porcelain dist) ]]; then
Expand Down