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
9 changes: 2 additions & 7 deletions .github/workflows/deploy-worker.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
name: Deploy — Smart-Sub Worker

on:
push:
branches: [main]
paths:
- "tools/smart-sub/src/**"
- "tools/smart-sub/wrangler.toml"
- "tools/backup-sub/**"
- "config/**"
# Auto-deploy on push is intentionally disabled for the public repo — deploying
# live infrastructure is a manual, credentialed action. Trigger by hand instead.
workflow_call:
workflow_dispatch:
Comment on lines +4 to 7
inputs:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/health-check.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: VPN Health Check

on:
schedule:
- cron: '*/30 * * * *' # Every 30 minutes
# Scheduled monitoring is disabled on the public repo: run logs would expose
# live endpoints, and public cron auto-disables after 60 days. Run by hand,
# or move monitoring to a private repo / external scheduler.
workflow_dispatch: {} # Manual trigger

jobs:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ jobs:
release-type: node
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
token: ${{ secrets.RELEASE_TOKEN }}
# Fall back to the built-in token when no PAT is configured.
token: ${{ secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/ripe-atlas-check.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: RIPE Atlas Iran Monitor

on:
schedule:
- cron: '0 */6 * * *' # Every 6 hours
# Scheduled monitoring is disabled on the public repo (run logs would expose
# measurement targets). Trigger manually, or run it from a private repo.
workflow_dispatch:
inputs:
measurement_ids:
Expand Down
2 changes: 2 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ export default {
],
],
"subject-case": [0], // Allow any case in subject
"body-max-line-length": [0], // Allow long lines (URLs, Dependabot bodies)
"footer-max-line-length": [0],
},
};
Loading