-
Notifications
You must be signed in to change notification settings - Fork 87
Use API-based commits for verification #1002
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
Merged
AbdulRahmanAlHamali
merged 16 commits into
main
from
abdullah/github-actions-bot-commit-signing
Jan 30, 2026
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0587838
Use API-based commits for verification
Abuudiii 8638442
Update release workflow to use simplified commit message formatting a…
Abuudiii 536a9e5
Update GitHub Actions workflow to set fetch-depth to 0 and specify ma…
Abuudiii d14370f
Add sign-commits option to release workflow for enhanced commit verif…
Abuudiii 753840c
Refactor release workflow to use GitHub CLI for pull request creation…
Abuudiii e8d6606
Enhance release workflow by adding a step to create and push a new br…
Abuudiii 3f0f720
Update create-release workflow to use the latest version of the signe…
Abuudiii c3075b2
Refactor create-release workflow to utilize GitHub Script for committ…
Abuudiii 69845a8
Refactor create-release workflow to improve readability of git status…
Abuudiii a154004
Add CLA check to workflows for enhanced contribution verification
Abuudiii a05401e
Add permissions for actions and pull-requests in CLA check workflow t…
Abuudiii f2d31b5
Update CLA workflow trigger from 'workflow_call' to 'workflow_dispatc…
Abuudiii 82e7c5f
Refactor CLA and create-release workflows to enhance security by usin…
Abuudiii 3b2521a
Merge branch 'main' into abdullah/github-actions-bot-commit-signing
Abuudiii be7a37f
Refactor create-release workflow to replace manual branch creation an…
Abuudiii 9330a8e
Update create-release workflow to improve formatting of commit messag…
Abuudiii 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
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
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.
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.
why do we change this?
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.
The changelog script needs git log v{last_version}..HEAD to work. With depth 30, if there are more than 30 commits since the last release, the tag won't be reachable and the command fails. fetch-depth: 0 makes sure we always have access to the previous version tag.
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.
ohh gotcha