Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
fix: remove unnecessary colon
Browse files Browse the repository at this point in the history
  • Loading branch information
z0al committed Nov 25, 2020
1 parent f18b324 commit 13c93cf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tagger.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [release]
on: [release, create]

jobs:
actions-tagger:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/__tests__/action.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ test('it works in default config', async () => {
issue_number: 1,
owner: 'owner',
repo: 'repo',
body: `:hourglass_flowing_sand: : Alright! Looks like we need to wait for some *dependencies*:
body: `:hourglass_flowing_sand: Alright! Looks like we need to wait for some *dependencies*:
* owner/repo#2
* user/another-repo#3
Expand Down
2 changes: 1 addition & 1 deletion src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class IssueManager {
const isBlocked = dependencies.some((dep) => dep.blocker);

const header = isBlocked
? ':hourglass_flowing_sand: : Alright! Looks like we ' +
? ':hourglass_flowing_sand: Alright! Looks like we ' +
'need to wait for some *dependencies*:'
: ':tada: Great news! Looks like all the *dependencies* ' +
'have been resolved:';
Expand Down

0 comments on commit 13c93cf

Please sign in to comment.