Skip to content

Tags: Mergifyio/mergify-cli

Tags

2025.2.14.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: set test.run.id as str (#622)

OpenTelemetry cannot encode 8 bytes integer in protobuf.

2025.2.13.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
refactor: switch to test run id (#621)

2025.02.06.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: update GHA notice to new format (#612)

2025.01.29.14.38

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
build(deps-dev): Bump pytest-asyncio from 0.25.2 to 0.25.3

Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.25.2 to 0.25.3.
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.25.2...v0.25.3)

---
updated-dependencies:
- dependency-name: pytest-asyncio
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

2025.01.29

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
build(deps-dev): Bump pytest-asyncio from 0.25.2 to 0.25.3

Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.25.2 to 0.25.3.
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.25.2...v0.25.3)

---
updated-dependencies:
- dependency-name: pytest-asyncio
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

2024.12.03.10.15

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: put some default options to stack group (#568)

Global options `--token` and `--github-server` are related to the `stack` group and should not have their defaults computed for other groups since they may break others commands.

--debug is still a global option:

$ `mergify --debug stack push`

This does not work anymore:

$ `mergify --token foobar stack push`

Global `stack` options are to be passed like this:

$ `mergify stack --token foobar push`

2024.12.02.15.25

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: use console print instead of log for annotation (#565)

`console.log` may wrap or add some whitespaces at end of the annotation.

2024.11.29.08.57

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(chore): use a callable for defaults (#559)

Without a callable the defaults are evaluated on import which causes unexpected errors with other commands.

2024.11.28.13.27

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(release): add gh token to env (#556)

Release script is failing, asking to set the GH_TOKEN env variable to use gh CLI. This adds it in the step.
https://cli.github.com/manual/gh_auth_login

2024.11.28.12.43

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(ci): add junit upload CLI (#550)

Adds the cli `mergify ci junit-upload` to upload JUnit xml reports to CI Issues.

Fixes MRGFY-4339