mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
hide builds using dedicated runners from forks (#7377)
This commit is contained in:
5
.github/workflows/macos-generation.yml
vendored
5
.github/workflows/macos-generation.yml
vendored
@@ -40,7 +40,12 @@ defaults:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
#
|
||||||
|
# "macos-vmware" is dedicated runner not available in forks.
|
||||||
|
# to reduce undesired run attempts in forks, stick jobs to "actions" organization only
|
||||||
|
#
|
||||||
runs-on: macos-vmware
|
runs-on: macos-vmware
|
||||||
|
if: ${{ github.repository_owner == 'actions' }}
|
||||||
timeout-minutes: 1200
|
timeout-minutes: 1200
|
||||||
steps:
|
steps:
|
||||||
- uses: azure/login@v1
|
- uses: azure/login@v1
|
||||||
|
|||||||
5
.github/workflows/ubuntu-win-generation.yml
vendored
5
.github/workflows/ubuntu-win-generation.yml
vendored
@@ -24,7 +24,12 @@ defaults:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
#
|
||||||
|
# "azure-builds" is dedicated runner not available in forks.
|
||||||
|
# to reduce undesired run attempts in forks, stick jobs to "actions" organization only
|
||||||
|
#
|
||||||
runs-on: azure-builds
|
runs-on: azure-builds
|
||||||
|
if: ${{ github.repository_owner == 'actions' }}
|
||||||
timeout-minutes: 1200
|
timeout-minutes: 1200
|
||||||
steps:
|
steps:
|
||||||
- name: Determine checkout type
|
- name: Determine checkout type
|
||||||
|
|||||||
Reference in New Issue
Block a user