Skip to content

Commit

Permalink
✨ feat: add a filter for beta releases on soda-for-sparc
Browse files Browse the repository at this point in the history
  • Loading branch information
megasanjay committed Aug 25, 2023
1 parent 53e8570 commit 5223811
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,14 @@ module.exports = (app) => {
return;
}

// if the repository name is SODA-for-SPARC and the release is a beta release, return
if (
context.payload.repository.name === "SODA-for-SPARC" &&
context.payload.release.name.includes("beta")
) {
return;
}

// Get the release
const release = context.payload.release;

Expand Down

1 comment on commit 5223811

@vercel
Copy link

@vercel vercel bot commented on 5223811 Aug 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.