fix: Remove schedule triggers from all workflows
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 7s
Contract Performance Benchmarks / benchmark-gas-usage (push) Successful in 1m3s
Contract Performance Benchmarks / benchmark-execution-time (push) Successful in 1m1s
Contract Performance Benchmarks / benchmark-throughput (push) Successful in 58s
Deploy to Testnet / deploy-testnet (push) Failing after 1m7s
P2P Network Verification / p2p-verification (push) Successful in 2s
Security Scanning / security-scan (push) Successful in 29s
Contract Performance Benchmarks / compare-benchmarks (push) Successful in 1s
Deploy to Testnet / notify-deployment (push) Successful in 2s

- Remove cron schedules from blockchain-sync-verification.yml (every 6 hours)
- Remove cron schedule from node-failover-simulation.yml (daily at 2 AM)
- Remove cron schedule from p2p-network-verification.yml (every 4 hours)
- Remove cron schedule from security-scanning.yml (weekly on Monday)
- Remove cron schedule from contract-benchmarks.yml (weekly on Sunday)
- All workflows now only trigger on push or manual workflow_dispatch
This commit is contained in:
aitbc
2026-04-29 16:15:30 +02:00
parent 0e5a89e627
commit eb94a69a5f
5 changed files with 0 additions and 10 deletions

View File

@@ -10,8 +10,6 @@ on:
pull_request:
branches: [main, develop]
workflow_dispatch:
schedule:
- cron: '0 */6 * * *' # Every 6 hours
concurrency:
group: blockchain-sync-verification-${{ github.ref }}

View File

@@ -9,8 +9,6 @@ on:
- '.gitea/workflows/contract-benchmarks.yml'
pull_request:
branches: [main, develop]
schedule:
- cron: '0 0 * * 0' # Weekly on Sunday
workflow_dispatch:
inputs:
benchmark_type:

View File

@@ -1,8 +1,6 @@
name: Node Failover Simulation
on:
schedule:
- cron: '0 2 * * *' # Daily at 2 AM
workflow_dispatch:
concurrency:

View File

@@ -10,8 +10,6 @@ on:
pull_request:
branches: [main, develop]
workflow_dispatch:
schedule:
- cron: '0 */4 * * *' # Every 4 hours
concurrency:
group: p2p-network-verification-${{ github.ref }}

View File

@@ -10,8 +10,6 @@ on:
- '.gitea/workflows/security-scanning.yml'
pull_request:
branches: [main, develop]
schedule:
- cron: '0 3 * * 1'
workflow_dispatch:
concurrency: