ci: validate wit definitions#827
Merged
yoshuawuyts merged 1 commit intoWebAssembly:mainfrom Nov 26, 2025
Merged
Conversation
e63f5ef to
610859c
Compare
Member
|
After we merge this we should add the following ruleset to the repo via Settings → Rules → Rulesets → New ruleset → Import a ruleset so we require all status checks to pass before a PR can be merged: {
"name": "Require All Status Checks to Pass",
"target": "branch",
"enforcement": "active",
"conditions": {
"ref_name": {
"include": [
"~DEFAULT_BRANCH"
],
"exclude": []
}
},
"rules": [
{
"type": "required_status_checks",
"parameters": {
"strict_required_status_checks_policy": true,
"do_not_enforce_on_create": false,
"required_status_checks": [
"Validate WIT"
]
}
}
],
"bypass_actors": []
} |
Signed-off-by: Bailey Hayes <bailey@cosmonic.com>
610859c to
96cccec
Compare
yoshuawuyts
approved these changes
Nov 26, 2025
Member
yoshuawuyts
left a comment
There was a problem hiding this comment.
We went over this PR together earlier today; excited to be moving forward with this!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This validates the wit definitions for both 0.2.* and 0.3.*
I have not added the update and publish workflows but will add those in a following PR once we land on the approach (use matrix for filter paths so we're only building what changed).