Skip to content

Commit

Permalink
Updating cleanup workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mjovanc committed Nov 19, 2024
1 parent a2d35c1 commit 9892dd4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/machete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ jobs:
echo "No changes to commit."
fi
- name: Create a Pull Request
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: main # The branch to merge the changes into
head: ${{ env.branch_name }} # Use the branch name from the previous step
branch: ${{ github.head_ref }} # Source branch (head)
base: main # Target branch (base)
title: "Fix unused dependencies"
body: "This PR removes unused dependencies from the project."
draft: false
body: |
This PR fixes unused dependencies found by cargo machete.
commit-message: "machete: removing unused dependencies"
labels: "dependencies", "automated pr"

0 comments on commit 9892dd4

Please sign in to comment.