New Feature
To set a full custom commit message without a triggered commit hash, use the full_commit_message
option instead of the commit_message
option.
Issue #274 by @dtolnay, Pull Request #275
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
full_commit_message: ${{ github.event.head_commit.message }}
See CHANGELOG.md for more details.