Skip to content

Commit 758718e

Browse files
authored
Use private GitHub Actions runners (#108)
* Update to use private runners * Update unnecessary text so the jobs restart * Unncessary updates to restart builds
1 parent 87274ce commit 758718e

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ECCN: Open Source
2-
#GUSINFO: Program Management Orion, SFDO Outbound Funds Module
2+
#GUSINFO: NPC Orion, SFDO Outbound Funds Module
33
#
44
# Copyright (c) 2021, salesforce.com, inc.
55
# All rights reserved.

.github/workflows/cspell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Spell Checking
22
on: [push]
33
jobs:
44
cspell:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-node@v2-beta

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Linting
22
on: [push]
33
jobs:
44
eslint:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-node@v2-beta

.github/workflows/jest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Jest
22
on: [push]
33
jobs:
44
jest:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-node@v2-beta

.github/workflows/label_audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Label Audit
22
on: [push]
33
jobs:
44
labels:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-python@v1
@@ -20,6 +20,6 @@ jobs:
2020
run: |
2121
python3 -m venv venv
2222
venv/bin/pip install -r requirements.txt
23-
- name: Label Audit
23+
- name: Label Audits
2424
run: |
2525
venv/bin/python scripts/label_audit.py

.github/workflows/lockfile-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Lockfile
22
on: [push]
33
jobs:
44
lint:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-node@v2-beta

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Formatting
22
on: [push]
33
jobs:
44
lint:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-node@v2-beta

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Python
22
on: [push]
33
jobs:
44
pytest:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-python@v1

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Python
22
on: [push]
33
jobs:
44
lint:
5-
runs-on: ubuntu-latest
5+
runs-on: SalesforceFoundation-ubuntu
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-python@v1

0 commit comments

Comments
 (0)