Skip to content

Commit c0b9147

Browse files
Fixed git command to include new files into commit. (#9846)
1 parent d04f132 commit c0b9147

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/update-gradle-dependencies.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ jobs:
5555
run: |
5656
git config user.name "github-actions[bot]"
5757
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
58-
git commit -a -m "chore: Update Gradle dependencies"
58+
git add --all
59+
git commit -m "chore: Update Gradle dependencies"
5960
echo "commit=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
6061
- name: Push changes
6162
uses: DataDog/commit-headless@5a0f3876e0fbdd3a86b3e008acf4ec562db59eee # action/v2.0.1

0 commit comments

Comments
 (0)