We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d55b53 commit 9f8201aCopy full SHA for 9f8201a
.github/workflows/sync-docs.yml
@@ -39,7 +39,17 @@ jobs:
39
run: |
40
python3 scripts/sync-docs.py beman
41
42
+ - name: Show changes (for PR testing)
43
+ if: github.event_name == 'pull_request'
44
+ run: |
45
+ echo "=== Changes detected ==="
46
+ git status
47
+ echo ""
48
+ echo "=== Diff ==="
49
+ git diff || echo "No changes detected"
50
+
51
- name: Create Pull Request
52
+ if: github.event_name != 'pull_request'
53
uses: peter-evans/create-pull-request@v6
54
with:
55
base: main
0 commit comments