disable: disable security-scanning.yml workflow
Some checks failed
security-scanning / audit (push) Has been cancelled
Some checks failed
security-scanning / audit (push) Has been cancelled
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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user