We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c85147c commit 6a57bf2Copy full SHA for 6a57bf2
src/executors/ExecutorDockerServerless.js
@@ -44,10 +44,9 @@ export class ExecutorDockerServerless extends ExecutorDocker {
44
return super.executeTask(task);
45
}
46
pushBranchName() {
47
- let refParts = this.eventData.ref ? this.eventData.ref.split('/') : [];
48
- let branchName = refParts.length > 0 ? refParts[refParts.length - 1].replace(/[^A-Za-z0-9\-+_]/g, '-') : null;
49
- this.log.info(`pushBranchName: ${branchName}`);
50
- return branchName;
+ let ref = this.eventData.ref;
+ this.log.info(`pushBranchName: ${ref}`);
+ return ref;
51
52
53
identifyChangedPackages() {
0 commit comments