Skip to content

Commit ae8ced6

Browse files
committed
fix: diff logic
1 parent 70f70d9 commit ae8ced6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class ReleaseTracker {
111111
console.log('stampedTags', stampedTags)
112112
console.log('githubTags', githubTags)
113113

114-
const filterredTags = R.difference(stampedTags, githubTags)
114+
const filterredTags = R.difference(githubTags, stampedTags)
115115

116116
if (filterredTags.length <= 0) {
117117
core.info('No tags to stamp to Linear')

0 commit comments

Comments
 (0)