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
6 changes: 5 additions & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude'))
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
timeout-minutes: 30
permissions:
contents: write
Expand Down
30 changes: 25 additions & 5 deletions .github/workflows/pr-fast-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ defaults:
jobs:
changes:
name: Detect Relevant Changes
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
outputs:
app: ${{ steps.filter.outputs.app }}
ci: ${{ steps.filter.outputs.ci }}
Expand Down Expand Up @@ -68,7 +72,11 @@ jobs:

fast-checks:
name: Fast Checks
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
timeout-minutes: 15
needs: changes
if: >-
Expand All @@ -88,7 +96,11 @@ jobs:

validate-secrets:
name: Validate Secrets
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
timeout-minutes: 10
if: github.event.pull_request.draft == false
steps:
Expand All @@ -100,7 +112,11 @@ jobs:

package-build:
name: Package Build
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
timeout-minutes: 10
needs: changes
if: >-
Expand All @@ -123,7 +139,11 @@ jobs:

ci-gate:
name: CI Gate
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
if: always()
needs:
- changes
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ defaults:
jobs:
github-release:
name: Build GitHub Release
runs-on: ubuntu-latest
runs-on:
- self-hosted
- linux
- shell-only
- public
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
Expand Down
Loading