From 6a0cd25aee86b0662caa72832d80c72c78b76ead Mon Sep 17 00:00:00 2001 From: shockrah Date: Fri, 24 Apr 2026 14:32:35 -0700 Subject: [PATCH] new simple workflow for ruff linter checks --- .gitea/workflows/wiki-python-linting.yaml | 18 ++++++++++++++++++ .gitignore | 2 ++ .gitlab-ci.yml | 13 ------------- 3 files changed, 20 insertions(+), 13 deletions(-) create mode 100644 .gitea/workflows/wiki-python-linting.yaml delete mode 100644 .gitlab-ci.yml diff --git a/.gitea/workflows/wiki-python-linting.yaml b/.gitea/workflows/wiki-python-linting.yaml new file mode 100644 index 0000000..ee7eff9 --- /dev/null +++ b/.gitea/workflows/wiki-python-linting.yaml @@ -0,0 +1,18 @@ +name: Wiki Resources Sanity Checks + +on: + push: + branches: + - master + + +jobs: + ruff-checks: + steps: + - name: Checkout repo + uses: actions/checkout@v4 + - name: Perform linting with ruff + uses: astral-sh/ruff-action@v3 + run: ruff check + with: + src: "wiki-resources" diff --git a/.gitignore b/.gitignore index 9f4514e..92a2be8 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ docker/beta/resume.shockrah.xyz/ k8s/config.yaml infra/**/tfplan .ansible/ + +wiki-resources/public_infrastructure.png diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 195d65e..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,13 +0,0 @@ -# You can override the included template(s) by including variable overrides -# SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings -# Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/pipeline/#customization -# Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings -# Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings -# Note that environment variables can be set in several places -# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence -stages: -- test -sast: - stage: test -include: -- template: Security/SAST.gitlab-ci.yml