Skip to content

Commit 4b8f93f

Browse files
authored
ci: Rename commit message trigger command (#6788)
Rename the internal command used to trigger the commit message generation workflow. The previous command, /gemini-commit-message, was causing conflicts or being unintentionally picked up by internal Gemini code assist tools. The new command, /generate-commit-message, is more generic and resolves this issue. Bug: 436660675 Change-Id: Ifcb9d2865087073385f0d6de9413303f94e40a7b
1 parent 8a12408 commit 4b8f93f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/gemini-commit-message.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
jobs:
1010
generate_commit_message:
1111
# This condition ensures the workflow only runs if the comment is on a PR
12-
# and the comment body is exactly '/gemini-commit-message'.
13-
if: github.event.issue.pull_request && github.event.comment.body == '/gemini-commit-message'
12+
# and the comment body is exactly '/generate-commit-message'.
13+
if: github.event.issue.pull_request && github.event.comment.body == '/generate-commit-message'
1414

1515
# The workflow will run on the latest version of Ubuntu.
1616
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)