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 f288139 commit fab4907Copy full SHA for fab4907
.github/workflows/sync-files.yaml
@@ -42,6 +42,7 @@ jobs:
42
43
- name: Detect sync updates
44
id: updates
45
+ working-directory: target
46
run: |
47
if output=$(git status --porcelain) && [ -z "$output" ]; then
48
echo "updated=true" >> "$GITHUB_OUTPUT"
@@ -52,10 +53,9 @@ jobs:
52
53
- name: Output short commit SHA
54
if: steps.updates.outputs.updated == 'true'
55
id: sha
56
57
- pushd target
58
echo "short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- popd
59
60
- name: Create Pull Request with applied automatic fixes
61
0 commit comments