Skip to content

Commit

Permalink
chore(common): Exclude optimize issues from set-version-labels
Browse files Browse the repository at this point in the history
  • Loading branch information
psavidis committed Dec 13, 2024
1 parent 05dc229 commit c7b509a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions common/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -164030,6 +164030,8 @@ module.exports = async function () {
}

const isUnsupportedIssue = (ticketMetadata) => {
// Insert here cases that should be excluded by the action

if (isIssueRelatedToOptimize(ticketMetadata)) {
console.log(`Issue is related to Optimize.`);
}
Expand Down
2 changes: 2 additions & 0 deletions common/src/set-version-labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ module.exports = async function () {
}

const isUnsupportedIssue = (ticketMetadata) => {
// Insert here cases that should be excluded by the action

if (isIssueRelatedToOptimize(ticketMetadata)) {
console.log(`Issue is related to Optimize.`);
}
Expand Down

0 comments on commit c7b509a

Please sign in to comment.