We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff10c1 commit ad75881Copy full SHA for ad75881
.github/workflows/ci.yaml
@@ -45,11 +45,9 @@ jobs:
45
run: |
46
rsync -a --delete --exclude='.git' ./example-tryout/ ./{{cookiecutter.app_name}}/
47
- name: Commit & push generated changes
48
- env:
49
- PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
50
51
git config --local user.email "github-actions[bot]@users.noreply.github.com"
52
git config --local user.name "github-actions[bot]"
53
git add .
54
git diff --cached --quiet || git commit -m "ci: update generated cookiecutter template from example"
55
- git push https://x-access-token:${PAT_TOKEN}@github.com/${{ github.repository }} HEAD:${{ github.head_ref }}
+ git push https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }} HEAD:${{ github.head_ref }}
0 commit comments