From c8c25c69fa2c5e22b8693a5f32d97c99608ebb66 Mon Sep 17 00:00:00 2001
From: 6arelyFuture <alterware@proton.me>
Date: Mon, 1 Jul 2024 15:54:33 +0000
Subject: [PATCH 1/2] build: rename workflow

---
 .gitea/workflows/{test.yml => lint.yml} | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename .gitea/workflows/{test.yml => lint.yml} (85%)

diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/lint.yml
similarity index 85%
rename from .gitea/workflows/test.yml
rename to .gitea/workflows/lint.yml
index 2953d78..67202ec 100644
--- a/.gitea/workflows/test.yml
+++ b/.gitea/workflows/lint.yml
@@ -1,19 +1,19 @@
-name: test
+name: lint
 
 on: [push]
 
 jobs:
-  test-linux:
-    name: Test on Linux
+  lint
+    name: Lint GSC files
     runs-on: ubuntu-latest
-
     steps:
       - name: Check out files
         uses: actions/checkout@v4
 
-      - name: Compile scripts
+      - name: Lint
         uses: addnab/docker-run-action@v3
         with:
+          registry: gcr.io
           image: xensik/gsc-tool:latest
           options: --volumes-from=${{ env.JOB_CONTAINER_NAME }}
           run: |
-- 
2.34.1


From abecf081976c165cc5562afb194dcbc34dbb6d32 Mon Sep 17 00:00:00 2001
From: 6arelyFuture <alterware@proton.me>
Date: Mon, 1 Jul 2024 15:56:05 +0000
Subject: [PATCH 2/2] build: fix typo

---
 .gitea/workflows/lint.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml
index 67202ec..a51b9d3 100644
--- a/.gitea/workflows/lint.yml
+++ b/.gitea/workflows/lint.yml
@@ -3,7 +3,7 @@ name: lint
 on: [push]
 
 jobs:
-  lint
+  lint:
     name: Lint GSC files
     runs-on: ubuntu-latest
     steps:
-- 
2.34.1