-
Notifications
You must be signed in to change notification settings - Fork 0
Modernize GitHub release contributors layout #168
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
Open
nirooxx
wants to merge
35
commits into
main
Choose a base branch
from
improve/release-contributors-layout
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
72804f7
chore: trigger renovate
nirooxx b0421f1
Merge branch 'main' of https://github.com/open-resource-discovery/git…
nirooxx 14b17c9
Merge branch 'main' of https://github.com/open-resource-discovery/git…
nirooxx ef99f80
Merge branch 'main' of https://github.com/open-resource-discovery/git…
nirooxx 71f081a
Merge branch 'main' of https://github.com/open-resource-discovery/git…
nirooxx 7e2b836
Merge branch 'main' of https://github.com/open-resource-discovery/git…
nirooxx 9acf467
Merge branch 'main' of https://github.com/open-resource-discovery/git…
nirooxx f21630c
fix: configure git to use GITHUB_TOKEN for GHE fetch operations
nirooxx 9acc674
fix(tsconfig): enable isolatedModules for NodeNext/ts-jest compatibility
nirooxx af4869e
fix: deduplicate contributors by GitHub login instead of email
nirooxx 9ebef55
Merge branch 'main' into fix/contributor-deduplication
nirooxx f6834cb
Merge branch 'main' into fix/contributor-deduplication
nirooxx 4b7387c
Update scripts/collect-commits.sh
nirooxx a299689
test: add proper unit tests for release creation
nirooxx 63da9df
Merge branch 'fix/contributor-deduplication' of https://github.com/op…
nirooxx 3758c14
Merge branch 'main' into fix/contributor-deduplication
nirooxx 421d02f
refactor: make env checks more explicit in release creation
nirooxx 75a8224
Merge branch 'fix/contributor-deduplication' of https://github.com/op…
nirooxx 6100ea2
Solving merge conflicts
nirooxx 64faec5
Clean up
nirooxx 34a8755
feat: modernize release contributors layout
nirooxx 6a93429
chore: merge main into branch and resolve conflicts
Copilot cfa6f8b
test: cover release scripts and GitHub release flow
nirooxx 222150e
Merge branch 'improve/release-contributors-layout' of https://github.…
nirooxx 2b35fcf
test: cover release scripts and GitHub release flow
nirooxx 207c828
Merge branch 'main' into improve/release-contributors-layout
nirooxx 80bc746
Merge branch 'main' into improve/release-contributors-layout
nirooxx c6b4101
test: update release body expectations for modern layout
nirooxx 8bd9804
feat: improve release notes layout and PR link rendering
nirooxx dbc7c9a
Merge branch 'main' into improve/release-contributors-layout
nirooxx 3773653
Dispatch CI workflows for generated changelog PRs (#177)
nirooxx 2fe0244
Merge remote-tracking branch 'origin/main' into improve/release-contr…
Copilot 0aaff74
fix: configure git identity in cloned repo before committing in test
Copilot 11bb084
refactor: switch Docker action runtime to TypeScript
nirooxx a09ca93
Merge branch 'main' into improve/release-contributors-layout
nirooxx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| { | ||
| "permissions": { | ||
| "allow": [ | ||
| "Bash(pwd)", | ||
| "Bash(ls*)", | ||
| "Bash(dir*)", | ||
| "Bash(Get-ChildItem*)", | ||
| "Bash(Get-Content*)", | ||
| "Bash(Select-String*)", | ||
| "Bash(Test-Path*)", | ||
| "Bash(npm install*)", | ||
| "Bash(npm ci*)", | ||
| "Bash(npm run *)", | ||
| "Bash(npm test*)", | ||
| "Bash(npx *)", | ||
| "Bash(node *)", | ||
| "Bash(git status*)", | ||
| "Bash(git diff*)", | ||
| "Bash(git log*)", | ||
| "Bash(git branch*)", | ||
| "Bash(Start-Sleep -Seconds 5)", | ||
| "Bash(powershell -Command \"docker ps\")" | ||
| ], | ||
| "deny": [ | ||
| "Bash(git commit*)", | ||
| "Bash(git push*)", | ||
| "Bash(git tag*)", | ||
| "Bash(git reset --hard*)", | ||
| "Bash(rm -rf*)", | ||
| "Bash(Remove-Item * -Recurse*)", | ||
| "Bash(del *)", | ||
| "Bash(rmdir *)" | ||
| ], | ||
| "ask": [ | ||
| "Bash(git add*)", | ||
| "Bash(git restore*)", | ||
| "Bash(git checkout*)", | ||
| "Bash(git stash*)", | ||
| "Bash(mkdir*)", | ||
| "Bash(New-Item*)", | ||
| "Bash(Copy-Item*)", | ||
| "Bash(Move-Item*)" | ||
| ], | ||
| "defaultMode": "default" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,9 @@ | ||
| ## [unreleased] | ||
|
|
||
| ### Added | ||
|
|
||
| - Added automated GitHub release creation. | ||
| - Added changelog-based release notes. | ||
| - Added configurable tag templates and release metadata. | ||
| - Added contributor detection and GitHub-native mentions. | ||
| - Added optional CI workflow dispatch for generated changelog PRs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.