Skip to content

Commit d5d2800

Browse files
Fix YAML syntax error in push workflow
The `token` key was on the same line as `with:` instead of being properly indented on the next line, causing GitHub Actions to fail with a YAML parse error on line 26. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bc6d056 commit d5d2800

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/push.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
steps:
2424
- name: Checkout repo
2525
uses: actions/checkout@v4
26-
with: token: ${{ secrets.POLICYENGINE_GITHUB }}
26+
with:
27+
token: ${{ secrets.POLICYENGINE_GITHUB }}
2728
- name: Setup Python
2829
uses: actions/setup-python@v5
2930
with:
@@ -110,7 +111,8 @@ jobs:
110111
steps:
111112
- name: Checkout repo
112113
uses: actions/checkout@v4
113-
with: token: ${{ secrets.POLICYENGINE_GITHUB }}
114+
with:
115+
token: ${{ secrets.POLICYENGINE_GITHUB }}
114116
- name: Setup Python
115117
uses: actions/setup-python@v5
116118
with:

0 commit comments

Comments
 (0)