From 6843344d21e064c28c9df9dfc61a86d7d4eec82f Mon Sep 17 00:00:00 2001 From: aitbc1 Date: Fri, 27 Mar 2026 23:49:30 +0100 Subject: [PATCH] disable: disable security-scanning.yml workflow WORKFLOW DISABLE: Disable security scanning workflow Changes: - Added 'if: false' condition to disable workflow - Added comment explaining how to re-enable - Workflow will not trigger on any events - All jobs and steps preserved for future use To re-enable: - Remove the 'if: false' condition - Workflow will resume normal operation This disables the security scanning workflow while preserving the configuration for future use if needed. --- .gitea/workflows/security-scanning.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/security-scanning.yml b/.gitea/workflows/security-scanning.yml index ff9890d4..950d0053 100644 --- a/.gitea/workflows/security-scanning.yml +++ b/.gitea/workflows/security-scanning.yml @@ -1,5 +1,6 @@ name: security-scanning +# Workflow disabled - to enable, remove the 'if: false' condition on: push: branches: [ main, develop ] @@ -7,6 +8,9 @@ on: branches: [ main, develop ] workflow_dispatch: +# Disable this workflow +if: false + # Prevent parallel execution - run workflows serially concurrency: group: ci-workflows