Skip to content

Commit

Permalink
fix: Log in before removing deployments from feature branches (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpens authored Feb 16, 2024
1 parent b839763 commit 9e454af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/feature-branch-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:

- name: Delete folder
run: |
git config --global user.name GitHub Action
git config --global user.email [email protected]
git rm demo-${{ env.BRANCH_NAME }} -r
git config user.name ${{ github.actor }}
git add .
git commit -m "Remove feature branch folder"
git push
Expand Down

0 comments on commit 9e454af

Please sign in to comment.