mirror of
https://github.com/casey/just.git
synced 2025-07-07 17:45:00 +00:00
Credit myself in changelog (#2162)
This commit is contained in:
parent
1547af08b5
commit
bf6ec6bf16
2 changed files with 470 additions and 474 deletions
934
CHANGELOG.md
934
CHANGELOG.md
File diff suppressed because it is too large
Load diff
|
@ -30,13 +30,9 @@ fn main() {
|
|||
.replace_all(
|
||||
&fs::read_to_string("CHANGELOG.md").unwrap(),
|
||||
|captures: &Captures| {
|
||||
let pr = captures[1].parse().unwrap();
|
||||
match author(pr).as_str() {
|
||||
"casey" => format!("([#{pr}](https://github.com/casey/just/pull/{pr}))"),
|
||||
contributor => {
|
||||
format!("([#{pr}](https://github.com/casey/just/pull/{pr}) by [{contributor}](https://github.com/{contributor}))")
|
||||
}
|
||||
}
|
||||
let pr = captures[1].parse().unwrap();
|
||||
let contributor = author(pr);
|
||||
format!("([#{pr}](https://github.com/casey/just/pull/{pr}) by [{contributor}](https://github.com/{contributor}))")
|
||||
},
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue