Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"requires_local_executor": true,
"interface": {
"displayName": "Mergify",
"shortDescription": "Run and debug your merge queue, stacked pull requests, and Mergify configuration from the terminal.",
"shortDescription": "Run and debug your merge queue",
"longDescription": "Mergify serializes merges through a queue that runs CI on temporary merge commits, so a pull request that only breaks in combination with another one gets caught before it reaches your default branch. These skills drive the Mergify CLI so an agent can work that queue with you.\n\nAsk why a pull request left the queue and get the engine's own dequeue reason, the checks that failed, and a link straight to the job log. Read the activity log for one pull request or for the whole repository. Validate a .mergify.yml against the schema before you commit it, or simulate what your rules would do on a real pull request. Set up merge protections such as dependencies between pull requests or scheduled freezes for a release window. Turn a branch of commits into a stack of one pull request per commit and keep them rebased.\n\nSix skills ship in the bundle: mergify-merge-queue, mergify-events, mergify-config, mergify-merge-protections, mergify-ci, and mergify-stack.\n\nIt runs on the Mergify CLI, a single static binary with no runtime to install, so it needs a local execution environment: Codex, or ChatGPT desktop with local execution. You need a GitHub repository with Mergify enabled. Install the CLI with 'brew install mergifyio/tap/mergify-cli', sign in once with 'mergify auth login' or set MERGIFY_TOKEN, then ask for what you want in plain language.",
"developerName": "Mergify",
"category": "Developer Tools",
Expand Down
52 changes: 30 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ getrandom = "0.4"
glob = "0.3"
globset = "0.4"
iana-time-zone = "0.1"
jsonschema = { version = "0.49", default-features = false }
jsonschema = { version = "0.55", default-features = false }
# OS credential store for the token `mergify auth login` mints. The
# default feature set is the one that keeps the Linux build free of C:
# `zbus-secret-service-keyring-store` talks to the Secret Service over
Expand All @@ -49,7 +49,7 @@ jsonschema = { version = "0.49", default-features = false }
keyring = "4"
opentelemetry-proto = { version = "0.32", default-features = false, features = ["gen-tonic-messages", "trace"] }
prost = "0.14"
quick-xml = "0.41"
quick-xml = "0.42"
regex = "1"
# `form`: the OAuth device grant is `application/x-www-form-urlencoded`
# on the wire, as RFC 6749 §4 requires. Nothing else in the CLI sends a
Expand Down
Loading
Loading