Skip to content

Commit 49e5fb7

Browse files
committed
Fix invalid YAML formatting in Dependabot workflow template
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 4b1aa9a commit 49e5fb7

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

cookiecutter/migrate.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,13 @@ def create_dependabot_auto_merge_workflow() -> None:
6363
runs-on: ubuntu-latest
6464
steps:
6565
- name: Auto-merge Dependabot PR
66-
uses: >-
67-
frequenz-floss/dependabot-auto-approve@3cad5f42e79296505473325ac6636be897c8b8a1
68-
66+
uses: frequenz-floss/dependabot-auto-approve@3cad5f42e79296505473325ac6636be897c8b8a1 # v1.3.2
6967
with:
7068
github-token: ${{ secrets.GITHUB_TOKEN }}
71-
dependency-type: 'all'
72-
auto-merge: 'true'
73-
merge-method: 'merge'
74-
add-label: 'tool:auto-merged'
69+
dependency-type: all
70+
auto-merge: true
71+
merge-method: merge
72+
add-label: tool:auto-merged
7573
"""
7674

7775
workflow_file = workflow_dir / "auto-dependabot.yaml"

0 commit comments

Comments
 (0)