if a repo toml file contains:
[[crates-io-publishing]]
crates = ["crate_name"]
workflow-filename = "release.yml"
environment = "publish"
check that it also contain the corresponding environment:
[[environments]]
name = "publish"
note that publish needs to match.
Example PR where we missed this: #2139