-
Notifications
You must be signed in to change notification settings - Fork 233
Review #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Review #78
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,4 +35,4 @@ This repo is synced automatically with [TryGhost/Themes](https://github.com/TryG | |
|
|
||
| # Copyright & License | ||
|
|
||
| Copyright (c) 2013-2025 Ghost Foundation - Released under the [MIT license](LICENSE). | ||
| Copyright (c) 2013-2023 Ghost Foundation - Released under the [MIT license](LICENSE). | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check recent changes to README.md copyright year
echo "=== Recent README.md changes involving copyright ==="
git log --oneline --all -- README.md | head -20
echo -e "\n=== Detailed history of copyright line changes ==="
git log -p --all -S "2013-" -- README.md | head -150
echo -e "\n=== Current README.md line 38 ==="
sed -n '38p' README.md
echo -e "\n=== Branch comparison: main vs prod ==="
echo "Commits in prod but not in main:"
git log --oneline prod..main 2>/dev/null | head -20
echo "Commits in main but not in prod:"
git log --oneline main..prod 2>/dev/null | head -20
echo -e "\n=== Show current HEAD and branches ==="
git branch -v
git log --oneline -5Repository: TryGhost/Dawn Length of output: 755 🏁 Script executed: #!/bin/bash
echo "=== Commit 45c962e8 (2025) ==="
git show 45c962e8:README.md | sed -n '35,45p'
echo -e "\n=== Commit 6ca74e4b (2023) ==="
git show 6ca74e4b:README.md | sed -n '35,45p'
echo -e "\n=== Current HEAD (aa719640 Production) ==="
git show aa719640:README.md | sed -n '35,45p'
echo -e "\n=== Main branch version ==="
git show main:README.md | sed -n '35,45p'
echo -e "\n=== Detailed commit info ==="
git log --format=fuller 45c962e8 -1
echo "---"
git log --format=fuller 6ca74e4b -1Repository: TryGhost/Dawn Length of output: 1192 Critical: Copyright year moved backwards from 2025 to 2023. The copyright end year is being changed from 2025 to 2023. Git history confirms that commit
Verify whether this backward change is intentional and whether the merge direction is correct. 🤖 Prompt for AI Agents |
||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: TryGhost/Dawn
Length of output: 1416
🏁 Script executed:
Repository: TryGhost/Dawn
Length of output: 1714
🏁 Script executed:
Repository: TryGhost/Dawn
Length of output: 599
License copyright year regression: 2025 changed to 2023.
The LICENSE file's copyright year is being reverted from 2025 to 2023, which moves backwards despite the current date being January 2026. This represents outdated legal metadata that should reflect the current or most recent copyright year.
Update the copyright year to 2025 to maintain current legal accuracy.
🤖 Prompt for AI Agents