Skip to content

Commit

Permalink
feat: Change github runner label
Browse files Browse the repository at this point in the history
verdel committed Oct 25, 2023
1 parent da9f549 commit e2a8c95
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ function generateGitHubWorkflow() {
jobs: {
'run-tests': {
name: 'Run tests',
'runs-on': ['self-hosted', 'e2e-tests'],
'runs-on': 'e2e-tests',
'timeout-minutes': 90,
steps: [
{
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ function generateGitHubWorkflow() {
jobs: {
'run-tests': {
name: 'Run tests',
'runs-on': ['self-hosted', 'e2e-tests'],
'runs-on': 'e2e-tests',
'timeout-minutes': 90,
steps: [
{
2 changes: 1 addition & 1 deletion modules/tools/src/commands/generate-periodic-runs.js
Original file line number Diff line number Diff line change
@@ -144,7 +144,7 @@ function generatePeriodicRunWorkflow({ url, command, run, id, config }) {
jobs: {
'run-tests': {
name: 'Run tests',
'runs-on': ['self-hosted', 'e2e-tests'],
'runs-on': 'e2e-tests',
'timeout-minutes': 90,
steps: [
...getCheckoutSteps(run),

0 comments on commit e2a8c95

Please sign in to comment.