Skip to content

Commit 574b6be

Browse files
authored
fix: workaround for invoke local action from external repo (#11)
2 parents c1e46fe + 73155e4 commit 574b6be

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

REUSE.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version = 1
2-
SPDX-PackageName = "pull-request-semver-bumper
3-
SPDX-PackageSupplier = "<rico.gu@sap.com>
4-
SPDX-PackageDownloadLocation = "<https://github.com/sap/pull-request-semver-bumper>"
2+
SPDX-PackageName = "pull-request-semver-bumper"
3+
SPDX-PackageSupplier = "rico.gu@sap.com"
4+
SPDX-PackageDownloadLocation = "https://github.com/sap/pull-request-semver-bumper"
55
SPDX-PackageComment = "The code in this project may include calls to APIs (\"API Calls\") of\n SAP or third-party products or services developed outside of this project\n (\"External Products\").\n \"APIs\" means application programming interfaces, as well as their respective\n specifications and implementing code that allows software to communicate with\n other software.\n API Calls to External Products are not licensed under the open source license\n that governs this project. The use of such API Calls and related External\n Products are subject to applicable additional agreements with the relevant\n provider of the External Products. In no event shall the open source license\n that governs this project grant any rights in or to any External Products,or\n alter, expand or supersede any terms of the applicable additional agreements.\n If you have a valid license agreement with SAP for the use of a particular SAP\n External Product, then you may make use of any API Calls included in this\n project's code for that SAP External Product, subject to the terms of such\n license agreement. If you do not have a valid license agreement for the use of\n a particular SAP External Product, then you may only make use of any API Calls\n in this project for that SAP External Product for your internal, non-productive\n and non-commercial test and evaluation of such API Calls. Nothing herein grants\n you any rights to use or access any SAP External Product, or provide any third\n parties the right to use of access any SAP External Product, through API Calls."
66

77
[[annotations]]

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ outputs:
6868
runs:
6969
using: "composite"
7070
steps:
71+
- name: Copy Actions to Workspace
72+
shell: bash
73+
# FIXME: workaround until will be merged: https://github.com/actions/runner/pull/1684
74+
run: |
75+
[ -d .github/actions ] || (mkdir -p .github/actions && cp -r $GITHUB_ACTION_PATH/.github/actions .github/actions/)
7176
- name: Bump Maven
7277
if: inputs.type == 'maven'
7378
id: bump_maven

0 commit comments

Comments
 (0)