ci: styling formatting + cron adjustment

This commit is contained in:
Constrat
2024-12-13 15:04:18 +01:00
parent 8bbc4c2209
commit d57487dfb0
8 changed files with 15 additions and 12 deletions

View File

@@ -1,6 +1,8 @@
name: Blame Ignore Commit
name: Git Blame Ignore
on:
schedule:
- cron: "45 21 * * *" # Runs daily at 22:00 UTC
workflow_dispatch:
jobs:

View File

@@ -1,4 +1,5 @@
name: "Issue Checker"
on:
issues:
types: [opened, edited]

View File

@@ -1,6 +1,8 @@
name: Check Dead Links
on:
schedule:
- cron: "0 0 * * 2" # Every Tuesday at 00:00 UTC
push:
branches:
- dev
@@ -15,8 +17,6 @@ on:
- "**/*.md"
- "docs/**"
- ".github/workflows/markdown-checker.yml"
schedule:
- cron: "44 7 * * 2" # Every Tuesday at 7:44 AM UTC
workflow_dispatch:
jobs:

View File

@@ -1,6 +1,8 @@
name: release-nightly-ota
on:
schedule:
- cron: "0 22 * * *" # Runs daily at 22:00 UTC
workflow_dispatch:
inputs:
release_body:
@@ -21,8 +23,6 @@ on:
required: true
default: "10"
type: number
schedule:
- cron: "0 22 * * *" # Runs daily at 00:00 UTC
jobs:
build-win-nightly:

View File

@@ -2,7 +2,7 @@ name: res-update-game
on:
schedule:
- cron: "*/20 * * * *"
- cron: "*/20 * * * *" # Runs every 20 minutes
workflow_dispatch:
inputs:
commit_message:

View File

@@ -1,14 +1,14 @@
name: "Inactive Issues auto close"
env: # config
daysBeforeStale: 90 # Number of days of inactivity before marking as stale
daysBeforeClose: 7 # Number of days to wait after marking as stale before closing
name: "Inactive Issues Closer"
on:
schedule:
- cron: "0 0 * * *" # Runs daily at UTC 00:00
workflow_dispatch: # Allows manual triggering
env: # config
daysBeforeStale: 90 # Number of days of inactivity before marking as stale
daysBeforeClose: 7 # Number of days to wait after marking as stale before closing
jobs:
stale:
runs-on: ubuntu-latest

View File

@@ -1,13 +1,13 @@
name: sync-resource
on:
workflow_dispatch:
push:
branches:
- dev
paths:
- "resource/**"
- ".github/workflows/sync-resource.yml"
workflow_dispatch:
jobs:
sync-reource: