Skip to content

Commit ad7411f

Browse files
committed
Fix capitalization
1 parent b492442 commit ad7411f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ jobs:
3636
with:
3737
publish_dir: ./_site
3838
github_token: ${{ secrets.GITHUB_TOKEN }}
39-
commit_message: "Rebuild on Push"
39+
commit_message: "Rebuild on push"
4040

4141
- name: Scheduled Deploy
4242
if: ${{ github.event_name == 'schedule' }}
4343
uses: peaceiris/actions-gh-pages@v3
4444
with:
4545
publish_dir: ./_site
4646
github_token: ${{ secrets.GITHUB_TOKEN }}
47-
commit_message: "Scheduled Rebuild"
47+
commit_message: "Scheduled rebuild"
4848

4949
- name: Triggered Deploy
5050
if: ${{ github.event_name == 'repository_dispatch' }}
5151
uses: peaceiris/actions-gh-pages@v3
5252
with:
5353
publish_dir: ./_site
5454
github_token: ${{ secrets.GITHUB_TOKEN }}
55-
commit_message: "Triggered Rebuild: ${{ github.event.client_payload.reason }}"
55+
commit_message: "Triggered rebuild: ${{ github.event.client_payload.reason }}"

0 commit comments

Comments
 (0)