We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8917984 commit 365b6eaCopy full SHA for 365b6ea
1 file changed
.github/workflows/ci.yml
@@ -5,10 +5,8 @@ on:
5
pull_request:
6
branches: [main]
7
workflow_dispatch:
8
-
9
permissions:
10
contents: write
11
12
jobs:
13
codespell:
14
runs-on: ubuntu-latest
@@ -30,15 +28,12 @@ jobs:
30
28
run: |
31
29
git config user.name "GitHub Actions"
32
git config user.email "actions@github.com"
33
34
if git diff --quiet; then
35
echo "✅ No formatting changes needed"
36
exit 0
37
fi
38
39
git add -A
40
git commit -m "style: apply ruff formatting [skip ci]"
41
42
for i in 1 2 3; do
43
git pull --rebase origin main && git push && break
44
echo "⚠️ Push failed, retrying ($i/3)..."
0 commit comments