Bring the repository up to the standard of its siblings - #1
Merged
Conversation
stadion is the newest repository here and inherited the least. It had ci.yml and publish.yml and nothing else: no dependency updates, no code scanning, no aggregate check, and until now no branch protection, so anything could be pushed straight to main. Four things: An aggregate `CI` job. The matrix jobs carry their operating system and Python version in their names, so each is a separate status context that changes the moment the matrix does. Requiring those in branch protection means a required check silently stops matching the day a Python version is added. The aggregate gives one stable name to require. dependabot.yml, weekly, on the same schedule as the rest of the organisation so the Monday triage sees this repository too. torch, numpy and scipy are ignored for the same reason as elsewhere: their lower bounds describe what a user may already have, not what CI runs. dependabot-auto-merge.yml, copied unchanged from the version that already has both of its bugs fixed - reading the pull request author rather than the actor, and not calling `gh pr review --approve`, which this organisation does not permit Actions to do. codeql.yml, retargeted from master to main.
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
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.
stadion is the newest repository and inherited the least:
ci.ymlandpublish.ymland nothing else. No dependency updates, no code scanning, no aggregate check — and until an hour ago no branch protection, so anything could be pushed straight tomain.Aggregate
CIjob. The matrix jobs carry their OS and Python version in their names, so each is a separate status context that changes the moment the matrix does. Requiring those in branch protection means a required check silently stops matching the day a Python version is added. The aggregate gives one stable name to require — the same pattern already in praxis, mlango, glia, decisionrl and lemma.dependabot.yml, weekly on Monday like the rest of the organisation, so the Monday triage in.githubsees this repository too.torch,numpyandscipyare ignored for the same reason as elsewhere: their lower bounds describe what a user may already have, not what CI runs.dependabot-auto-merge.yml, copied unchanged from the version that already has both of its bugs fixed — reading the pull request author rather thangithub.actor, and not callinggh pr review --approve.codeql.yml, retargeted frommastertomain.After merging
Branch protection is on but requires no status check yet, because
CIdid not exist as a context. Add it once this lands:gh api -X PATCH /repos/DrobyshevDev/stadion/branches/main/protection/required_status_checks -f strict=true -f 'contexts[]=CI'All four YAML files parse; job graph verified as
lint-and-test, verify-optima, reference-controls, ci.