Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/dependabot-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,17 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Install Please
run: |
./pleasew --version
# puku shells out to `plz`, but pleasew only installs `please` and doesn't
# put it on the PATH, so link it up here.
ln -sf "$HOME/.please/please" "$HOME/.please/plz"
echo "$HOME/.please" >> "$GITHUB_PATH"

- name: Run puku sync
run: |
./pleasew puku sync
./pleasew puku sync -w

- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@4b4693c596717de5c939cfa92b1b0b5c8676537f
Expand Down
Loading