Skip to content

Commit 498e407

Browse files
williamdesclaudehappy-otter
committed
fix(metadata): correct Cargo.toml license MIT -> MPL-2.0
The actual LICENSE file in the repository has always been the Mozilla Public License 2.0, matching the rest of the sudo-bot actions family. Cargo.toml's license field claimed MIT, which was a metadata error. No code change; aligns crates.io and dependency-tree license reporting with the file. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
1 parent 069046e commit 498e407

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
### Fixed
10+
- `Cargo.toml`'s `license` field said `MIT` while the actual `LICENSE`
11+
file in the repository (and the rest of the `sudo-bot` actions
12+
family) is the Mozilla Public License 2.0. Corrected the metadata
13+
to match: `license = "MPL-2.0"`. No code change.
14+
915
### Added
1016
- Gitea self-hosted support. The action auto-detects Gitea Actions (via
1117
the `GITEA_ACTIONS=true` env var the runner sets, or a `/api/v1` suffix

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "2.0.0"
44
edition = "2021"
55
authors = ["williamdes"]
66
description = "GitHub Action to merge a pull-request, written in Rust"
7-
license = "MIT"
7+
license = "MPL-2.0"
88
readme = "README.md"
99
repository = "https://github.com/sudo-bot/action-pull-request-merge"
1010

0 commit comments

Comments
 (0)