-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
[build] add reusable commit-changes.yml workflow #16965
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
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
be6593d
[build] add reusable commit-changes.yml workflow
titusfortner 04d9c93
[build] fix issues in commit-changes workflow
titusfortner 6fc96bb
Update .github/workflows/pre-release.yml
titusfortner e5de017
[build] address PR review feedback for commit-changes workflow
titusfortner 913a07a
[build] fix PR body formatting in pin-browsers workflow
titusfortner 5e09c2c
fixup! [build] fix PR body formatting in pin-browsers workflow
titusfortner 4e296c3
[build] improve artifact download handling in commit-changes workflow
titusfortner 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
Some comments aren't visible on the classic Files Changed page.
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
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,88 @@ | ||
| name: Commit Changes | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| artifact-name: | ||
| description: Name of artifact containing changes.patch | ||
| required: true | ||
| type: string | ||
| commit-message: | ||
| description: Commit message | ||
| required: true | ||
| type: string | ||
| ref: | ||
| description: Git ref to checkout | ||
| required: false | ||
| type: string | ||
| default: '' | ||
| push-branch: | ||
| description: Branch to push to (defaults to current branch, uses force push) | ||
| required: false | ||
| type: string | ||
| default: '' | ||
| outputs: | ||
| changes-committed: | ||
| description: Whether changes were committed and pushed | ||
| value: ${{ jobs.commit.outputs.committed }} | ||
| secrets: | ||
| SELENIUM_CI_TOKEN: | ||
| required: false | ||
|
|
||
| jobs: | ||
| commit: | ||
| name: Commit Changes | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| committed: ${{ steps.commit.outputs.committed }} | ||
| permissions: | ||
| contents: write | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ inputs.ref || github.ref }} | ||
| token: ${{ secrets.SELENIUM_CI_TOKEN || github.token }} | ||
| - name: Download patch | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: ${{ inputs.artifact-name }} | ||
| continue-on-error: true | ||
| - name: Apply and commit | ||
| id: commit | ||
| run: | | ||
| if [ -f changes.patch ] && [ -s changes.patch ]; then | ||
| if ! git apply --index changes.patch; then | ||
| echo "::error::Failed to apply patch" | ||
| echo "committed=false" >> "$GITHUB_OUTPUT" | ||
| exit 1 | ||
| fi | ||
| git config --local user.email "selenium-ci@users.noreply.github.com" | ||
| git config --local user.name "Selenium CI Bot" | ||
| if ! git commit -m "$COMMIT_MESSAGE"; then | ||
| echo "::error::Failed to commit changes" | ||
| echo "committed=false" >> "$GITHUB_OUTPUT" | ||
| exit 1 | ||
| fi | ||
| if [ -n "$PUSH_BRANCH" ]; then | ||
| if ! git push origin HEAD:"$PUSH_BRANCH" --force; then | ||
| echo "::error::Failed to push to $PUSH_BRANCH" | ||
| echo "committed=false" >> "$GITHUB_OUTPUT" | ||
| exit 1 | ||
| fi | ||
| else | ||
| if ! git push; then | ||
| echo "::error::Failed to push" | ||
| echo "committed=false" >> "$GITHUB_OUTPUT" | ||
| exit 1 | ||
| fi | ||
| fi | ||
| echo "::notice::Changes committed and pushed" | ||
| echo "committed=true" >> "$GITHUB_OUTPUT" | ||
| else | ||
| echo "::notice::No changes to commit" | ||
| echo "committed=false" >> "$GITHUB_OUTPUT" | ||
| fi | ||
| env: | ||
| COMMIT_MESSAGE: ${{ inputs.commit-message }} | ||
| PUSH_BRANCH: ${{ inputs.push-branch }} | ||
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
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.