We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b92e03 commit b86e5d8Copy full SHA for b86e5d8
.github/workflows/pre-commit-auto-update.yml
@@ -14,13 +14,25 @@ jobs:
14
15
- name: Update dependencies
16
run: |
17
+ set -x
18
python -m pip install --upgrade pip
19
pip install pre-commit
20
pre-commit autoupdate
21
22
+ - name: Gather changes
23
+ id: gather-changes
24
+ run: |
25
+ git diff --color
26
+ changes="$(git diff)"
27
+ echo "changes=${changes}" >> $GITHUB_OUTPUT
28
+
29
- name: Create pull request
30
uses: peter-evans/create-pull-request@v5
31
with:
32
commit-message: Update pre-commit dependencies
33
labels: cleanup-no-release-required, dependencies, github_actions
34
title: Update pre-commit dependencies
35
+ body: |
36
+ ```diff
37
+ ${{ steps.gather-changes.outputs.changes }}
38
+ ```
0 commit comments