Skip to content

Commit

Permalink
ci: disabled all scheduled workflows that are not actually evaluated
Browse files Browse the repository at this point in the history
* disabled `AutomatedUpdate` since it does not work any more if we do not update to the current Angular version
* disabled `DeadCode` since its findings are not actually evaluated - can still be run manually
* disabled `Updates` since only the checks after merging to develop were evaluated - added option to manually run the check
  • Loading branch information
shauke committed Aug 20, 2024
1 parent e91763c commit 7f47655
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/automated-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
types: [opened, synchronize]
paths:
- scripts/update-pwa.js
schedule:
- cron: '0 0 * * 1'
# schedule:
# - cron: '0 0 * * 1'

env:
NODE_VERSION: 18.16.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dead-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: DeadCode

on:
workflow_dispatch:
schedule:
# every sunday at midnight
- cron: '0 0 * * 0'
# schedule:
# # every sunday at midnight
# - cron: '0 0 * * 0'

env:
NODE_VERSION: 18.16.0
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/updates.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: Updates

on:
workflow_dispatch:
push:
branches:
- develop
- upgrade/**
- update/**
schedule:
- cron: '0 0 * * *'
# schedule:
# - cron: '0 0 * * *'

env:
NODE_VERSION: 18.16.0
Expand Down

0 comments on commit 7f47655

Please sign in to comment.