From de6e16739a46af245b59f32d46eaad50375a1562 Mon Sep 17 00:00:00 2001 From: snus xD Date: Mon, 21 Jul 2025 02:59:18 +0500 Subject: [PATCH] unready action --- .github/workflows/main.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fc6df5e..07ded0e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,5 +1,4 @@ -name: sorting - +name: main on: push: branches: [ main ] @@ -7,6 +6,9 @@ on: - '_sprites/**' - 'scripts/**' +permissions: + contents: write + jobs: run-scripts: runs-on: ubuntu-latest @@ -28,6 +30,15 @@ jobs: run: | npx tsx write.ts npx tsx sort.ts + npx tsx unready.ts + + - name: commit changes + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git add . + git commit -m "sorted unready sprites" || exit 0 + git push - name: upload uses: actions/upload-artifact@v4