Skip to content

Commit

Permalink
Allow "-flatpak-app" gateTag
Browse files Browse the repository at this point in the history
This is required to make gating work properly for these tags.
Kudos to @michalfabik for debugging.
  • Loading branch information
ckelleyRH committed Sep 6, 2024
1 parent 6b2d9ee commit 30519bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation_broker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const schema_brew_build_complete = Joi.object({
* ^(supp-)?rhel-[89]\.\d+\.\d+(-alpha)?(-beta)?(-z)?(-llvm-toolset|-go-toolset|-rust-toolset|.+-stack)?-gate$
*/
const schema_brew_build_tag_is_gate_tag_brew_build = Joi.string().pattern(
/^(supp-)?rhel-(8|9|10|11|12)\.\d+(\.\d+)?(-alpha)?(-beta)?(-z)?(-llvm-toolset|-go-toolset|-rust-toolset|.+-stack)?-gate$/,
/^(supp-)?rhel-(8|9|10|11|12)\.\d+(\.\d+)?(-alpha)?(-beta)?(-z)?(-llvm-toolset|-go-toolset|-rust-toolset|-flatpak-app|.+-stack)?-gate$/,
);

/**
Expand Down

0 comments on commit 30519bb

Please sign in to comment.