Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Use self hosted GitHub actions runners #4064

Merged
merged 1 commit into from
Aug 29, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

build:
name: Build application
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: "☁️ checkout repository"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# https://github.com/marketplace/actions/create-or-update-comment (https://github.com/peter-evans/create-or-update-comment)

name: Automatic Comment

on:
issues:
types: [opened]
Expand All @@ -14,7 +15,7 @@ jobs:
issues: write # for peter-evans/create-or-update-comment to create or update comment
pull-requests: write # for peter-evans/create-or-update-comment to create or update comment
name: Comment
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Automatic Comment
uses: peter-evans/create-or-update-comment@v2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Playwright Tests

on:
push:
branches: [main, beta]
Expand All @@ -11,7 +12,7 @@ jobs:
test:
name: E2E Tests
timeout-minutes: 60
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
setup:
name: Set environment variables
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
outputs:
DEPLOY_ENVIRONMENT: ${{ steps.env.outputs.DEPLOY_ENVIRONMENT }}
Expand All @@ -28,7 +28,7 @@ jobs:

build:
name: Build application
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: "☁️ checkout repository"
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- setup
- test
- build
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: Generate token
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
name: Cleanup actions
needs:
- release
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: "♻️ remove build artifacts"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: "☁️ checkout repository"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: "Assign issues with .take"

on:
issue_comment:
types:
Expand All @@ -9,7 +8,7 @@ on:
jobs:
take-issue:
name: Disable take issue
runs-on: ubuntu-latest
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: take an issue
Expand Down
Loading