Skip to content

Commit

Permalink
Merge pull request #156 from billsioros/fix/enclose-secrets-in-braces
Browse files Browse the repository at this point in the history
fix: enclose `secrets` in braces
  • Loading branch information
billsioros authored May 21, 2023
2 parents 31c2648 + 4465b7c commit 2f45782
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ on:
push:
branches: [master]
paths:
- 'cookiecutter-pypackage/**/*.py'
- '{{\{\{cookiecutter.project_name\}\}'
- 'tests/**/*.py'
- 'pyproject.toml'
pull_request:
branches: [master]
paths:
- 'cookiecutter-pypackage/**/*.py'
- '{{\{\{cookiecutter.project_name\}\}'
- 'tests/**/*.py'
- 'pyproject.toml'
jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
push:
branches: [master]
paths:
- 'cookiecutter-pypackage/**/*.py'
- '{{\{\{cookiecutter.project_name\}\}'
- 'pyproject.toml'
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
paths:
- 'cookiecutter-pypackage/**/*.py'
- '{{\{\{cookiecutter.project_name\}\}'
- 'pyproject.toml'
schedule:
- cron: "0 23 * * *"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/preview-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- master
types: [opened, synchronize, reopened, closed]
paths:
- 'cookiecutter-pypackage/**/*.py'
- 'docs/**'
- '*.md'
jobs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
github.actor == 'github-actions[bot]'
)
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ '{{' }} secrets.GITHUB_TOKEN {{ '}}' }}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: automerge
uses: pascalgn/automerge-action@v0.15.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ '{{' }} secrets.GITHUB_TOKEN {{ '}}' }}
MERGE_METHOD: "rebase"
UPDATE_METHOD: "rebase"
MERGE_RETRIES: "6"
Expand Down

0 comments on commit 2f45782

Please sign in to comment.