Skip to content

Commit

Permalink
ci(yaml): Quote text instead of using | (#37)
Browse files Browse the repository at this point in the history
Even if the text contains `:`, YAML treats it as normal if quoted.
  • Loading branch information
5ouma authored Apr 7, 2024
1 parent b0af804 commit 422cf0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deps-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,5 @@ jobs:
branch: deps-deno
delete-branch: true
base: dev
title: |
chore(deps): ${{ steps.title.outputs.content }}
title: "chore(deps): ${{ steps.title.outputs.content }}"
body: ${{ steps.body.outputs.content }}
3 changes: 1 addition & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ ci:
For more information, see https://pre-commit.ci.
autoupdate_branch: "dev"
autoupdate_commit_msg: |
chore(deps): Bump pre-commit hook
autoupdate_commit_msg: "chore(deps): Bump pre-commit hook"

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
Expand Down

0 comments on commit 422cf0a

Please sign in to comment.