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 3c0ae32 commit 483bb25Copy full SHA for 483bb25
.github/workflows/run-scripts.yml
@@ -45,7 +45,7 @@ jobs:
45
- name: Commit changes
46
shell: pwsh
47
run: |
48
- git diff platform/third-party-license-data.include.md > changes.patch
+ git diff > changes.patch
49
$changes = Get-Item changes.patch
50
51
Write-Output "Diff size is $($changes.Length) bytes"
@@ -60,7 +60,8 @@ jobs:
60
}
61
62
Write-Output "Staging changes"
63
- git add platform/third-party-license-data.include.md
+ git add --all
64
+ git restore --staged changes.patch
65
66
Write-Output "Committing changes"
67
git commit -m "Updates from running scripts in the 'tools' directory"
0 commit comments