Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix-issue-where-github-actions-i…
Browse files Browse the repository at this point in the history
…ncludes-dot-in-the-url-part' into main
  • Loading branch information
willem-delbare committed May 19, 2023
2 parents b58ca51 + 673e79a commit 22c723d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async function run() {
let moreDetailsText = '';
if (github.context.eventName === 'pull_request') {
// The featurebranch link is only relevant for PRs
moreDetailsText = ` More details at https://app.aikido.dev/featurebranch/scan/${scanId}.`;
moreDetailsText = ` More details at https://app.aikido.dev/featurebranch/scan/${scanId}`;
}
const { new_critical_issues_found = 0, issue_links = [], new_dependency_issues_found = 0, new_secrets_issues_found = 0, new_sast_issues_found = 0, } = result;
if (new_critical_issues_found > 0) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function run(): Promise<void> {
let moreDetailsText = '';
if (github.context.eventName === 'pull_request') {
// The featurebranch link is only relevant for PRs
moreDetailsText = ` More details at https://app.aikido.dev/featurebranch/scan/${scanId}.`;
moreDetailsText = ` More details at https://app.aikido.dev/featurebranch/scan/${scanId}`;
}

const {
Expand Down

0 comments on commit 22c723d

Please sign in to comment.