Skip to content

Commit 2c79d8f

Browse files
author
Tyler Titsworth
authored
Update Labels with Validation (#208)
Signed-off-by: Tyler Titsworth <tyler.titsworth@intel.com>
1 parent ee28e1a commit 2c79d8f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/container-ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
build-containers:
8080
needs: [setup-build]
8181
env: ${{ matrix }}
82-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
82+
runs-on: ubuntu-latest
8383
strategy:
8484
matrix: ${{ fromJson(needs.setup-build.outputs.matrix) }}
8585
fail-fast: false
@@ -128,7 +128,7 @@ jobs:
128128
scan-containers:
129129
needs: [setup-scan]
130130
if: ${{ !inputs.no_build && github.event_name == 'pull_request' }}
131-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
131+
runs-on: ubuntu-latest
132132
strategy:
133133
matrix:
134134
container: ${{ fromJSON(needs.setup-scan.outputs.matrix) }}

.github/workflows/integration-test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
cancel-in-progress: true
2222
jobs:
2323
group-diff:
24-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
24+
runs-on: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2525
outputs:
2626
groups: ${{ steps.group-list.outputs.FOLDERS }}
2727
steps:
@@ -71,7 +71,7 @@ jobs:
7171
secrets: inherit
7272
status-check:
7373
needs: [group-diff, pipeline-ci]
74-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
74+
runs-on: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7575
if: always()
7676
steps:
7777
- name: Harden Runner

.github/workflows/scorecard.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ permissions: read-all
2828
jobs:
2929
analysis:
3030
name: Scorecard analysis
31-
runs-on: intel-ubuntu-latest
31+
runs-on: ubuntu-latest
3232
permissions:
3333
security-events: write
3434
id-token: write

.github/workflows/test-runner-ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ concurrency:
2626
cancel-in-progress: true
2727
jobs:
2828
unit-test:
29-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
29+
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
3232
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
@@ -73,7 +73,7 @@ jobs:
7373
with:
7474
parallel-finished: true
7575
integration-test:
76-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
76+
runs-on: ubuntu-latest
7777
steps:
7878
- name: Harden Runner
7979
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1

0 commit comments

Comments
 (0)