Skip to content

Commit 2efdd22

Browse files
committed
fix: tags
1 parent 37f23ab commit 2efdd22

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
verify_files:
1111
name: Verify Files
12-
runs-on: [self-hosted, ubuntu-latest]
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:
@@ -26,7 +26,7 @@ jobs:
2626

2727
unit_tests:
2828
name: Unit Tests
29-
runs-on: [self-hosted, ubuntu-latest]
29+
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v4
3232
with:

.github/workflows/cleanup-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
cleanup:
10-
runs-on: self-hosted || ubuntu-latest
10+
runs-on: ubuntu-latest
1111
permissions:
1212
contents: write
1313
pages: write

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
verify_title:
1515
name: Verify Title
16-
runs-on: self-hosted || ubuntu-latest
16+
runs-on: ubuntu-latest
1717
if: ${{github.event.action != 'checks_requested'}}
1818
steps:
1919
- name: Checkout

.github/workflows/publication.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Publication
66

77
jobs:
88
publication:
9-
runs-on: self-hosted || ubuntu-latest
9+
runs-on: ubuntu-latest
1010
env:
1111
ASSET_NAME: embedded-ui
1212
steps:

.github/workflows/quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
e2e_tests:
1111
name: Playwright Tests
12-
runs-on: self-hosted || ubuntu-latest
12+
runs-on: ubuntu-latest
1313
permissions:
1414
contents: read
1515

@@ -92,7 +92,7 @@ jobs:
9292
9393
bundle_size:
9494
name: Check Bundle Size
95-
runs-on: self-hosted || ubuntu-latest
95+
runs-on: ubuntu-latest
9696
if: github.event_name == 'pull_request'
9797
outputs:
9898
current_size: ${{ steps.current_size.outputs.size }}
@@ -157,7 +157,7 @@ jobs:
157157
name: Deploy Test Report
158158
needs: [e2e_tests]
159159
if: always() && (github.event_name == 'push' && github.ref == 'refs/heads/main' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository))
160-
runs-on: self-hosted || ubuntu-latest
160+
runs-on: ubuntu-latest
161161
permissions:
162162
contents: write
163163
pages: write
@@ -209,7 +209,7 @@ jobs:
209209
name: Update PR Description
210210
needs: [e2e_tests, bundle_size]
211211
if: always() && github.event_name == 'pull_request'
212-
runs-on: self-hosted || ubuntu-latest
212+
runs-on: ubuntu-latest
213213
permissions:
214214
pull-requests: write
215215

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: Release
99
jobs:
1010
release:
1111
if: github.repository == 'ydb-platform/ydb-embedded-ui'
12-
runs-on: self-hosted || ubuntu-latest
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4

0 commit comments

Comments
 (0)