Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:

jobs:
analyze:
# Only run scheduled analysis on the original repository, not on forks
if: github.event_name != 'schedule' || github.repository == 'louislam/uptime-kuma'
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
Expand Down Expand Up @@ -42,6 +44,8 @@ jobs:
with:
category: "/language:${{matrix.language}}"
zizmor:
# Only run scheduled analysis on the original repository, not on forks
if: github.event_name != 'schedule' || github.repository == 'louislam/uptime-kuma'
runs-on: ubuntu-latest
permissions:
security-events: write
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ permissions: {}

jobs:
release-nightly:
# Only run on the original repository, not on forks
if: github.repository == 'louislam/uptime-kuma'
runs-on: ubuntu-latest
Comment on lines +13 to 15
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This job-level condition will also skip the job for workflow_dispatch runs on forks, so manual dispatch is not actually available there. If manual dispatch should still work on forks (as described in the PR), adjust the condition to only block schedule runs (e.g., allow non-schedule events regardless of repo), or update the PR description accordingly.

Copilot uses AI. Check for mistakes.
timeout-minutes: 120
permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/stale-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ permissions: {}

jobs:
stale:
# Only run on the original repository, not on forks
if: github.repository == 'louislam/uptime-kuma'
runs-on: ubuntu-latest
Comment on lines +11 to 13
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This job-level condition will also skip the job for workflow_dispatch runs on forks, so manual dispatch is not actually available there. If manual dispatch should still work on forks (as described in the PR), adjust the condition to only block schedule runs (e.g., allow non-schedule events regardless of repo), or update the PR description accordingly.

Copilot uses AI. Check for mistakes.
permissions:
actions: write
Expand Down
Loading