1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

ci: fix update-maintainers indentation (#7372)

Fixes a regression from be8f7e100f
This commit is contained in:
Matt Sturgeon 2025-07-02 17:44:16 +01:00 committed by GitHub
parent bafcf33687
commit a7820832c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -120,24 +120,24 @@ jobs:
---
🤖 *This PR was automatically created by the [update-maintainers workflow](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})*
run: |
# Create a new branch for the update
branch_name="maintainers/update-$(date +%Y%m%d%H%M%S)"
git checkout -b "$branch_name"
run: |
# Create a new branch for the update
branch_name="maintainers/update-$(date +%Y%m%d%H%M%S)"
git checkout -b "$branch_name"
# Commit the changes
git add all-maintainers.nix
git commit -m "$title" -m "$commit_body"
# Commit the changes
git add all-maintainers.nix
git commit -m "$title" -m "$commit_body"
# Push the branch
git push origin "$branch_name"
# Push the branch
git push origin "$branch_name"
# Create the pull request
gh pr create \
--title "$title" \
--body "$pr_body" \
--label "dependencies" \
--label "maintainers"
# Create the pull request
gh pr create \
--title "$title" \
--body "$pr_body" \
--label "dependencies" \
--label "maintainers"
- name: Summary
env:
has_changes: ${{ steps.check-changes.outputs.has_changes }}