Skip to content

Commit 6295796

Browse files
committed
fix: adjust quotes and escaping in bump-version.yml
1 parent 2d4434d commit 6295796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{cookiecutter.project_name}}/.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ on:
77

88
jobs:
99
bump-version:
10-
if: "!startsWith(github.event.head_commit.message, "bump:")"
10+
if: "!startsWith(github.event.head_commit.message, 'bump:')"
1111
runs-on: ubuntu-latest
1212
name: "Bump version and create changelog with commitizen"
1313
steps:
1414
- name: Check out
1515
uses: actions/checkout@v4
1616
with:
17-
token: {{ "\"${{ secrets.PERSONAL_ACCESS_TOKEN }}\"" }}
17+
token: {{ "${{ secrets.PERSONAL_ACCESS_TOKEN }}" }}
1818
fetch-depth: 0
1919
- name: Create bump and changelog
2020
uses: commitizen-tools/commitizen-action@master

0 commit comments

Comments
 (0)