mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #15316 from dims/do-not-run-arm64-jobs-on-forks
Do not run arm64 jobs on forks
This commit is contained in:
commit
ab27d56244
2
.github/workflows/e2e-arm64.yaml
vendored
2
.github/workflows/e2e-arm64.yaml
vendored
@ -5,6 +5,8 @@ on:
|
||||
permissions: read-all
|
||||
jobs:
|
||||
test:
|
||||
# this is to prevent the job to run at forked projects
|
||||
if: github.repository == 'etcd-io/etcd'
|
||||
runs-on: [Linux, ARM64]
|
||||
strategy:
|
||||
fail-fast: true
|
||||
|
2
.github/workflows/tests-arm64.yaml
vendored
2
.github/workflows/tests-arm64.yaml
vendored
@ -4,6 +4,8 @@ on:
|
||||
- cron: '30 1 * * *' # runs daily at 1:30 am.
|
||||
jobs:
|
||||
test:
|
||||
# this is to prevent the job to run at forked projects
|
||||
if: github.repository == 'etcd-io/etcd'
|
||||
runs-on: [Linux, ARM64]
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
Loading…
x
Reference in New Issue
Block a user