Skip to content

Commit

Permalink
only run jobs on asf project (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Nov 24, 2023
1 parent b4b9c68 commit 6fa0044
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests-kube-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ on:
- cron: '0 2 * * *' # every day 2am

jobs:
integration-test:
integration-test:
name: Integration Tests for Kubernetes API
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-management'
strategy:
fail-fast: false
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests-kube-dns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ on:
- cron: '0 2 * * *' # every day 2am

jobs:
integration-test:
integration-test:
name: Integration Tests for Kubernetes DNS
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-management'
strategy:
fail-fast: false
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests-lease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ on:
- cron: '0 2 * * *' # every day 2am

jobs:
integration-test:
integration-test:
name: Integration test for Kubernetes Lease
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-management'
strategy:
fail-fast: false
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ on:
# Different from its siblings, we don't configure this workflow to run as a cron job.

jobs:
integration-test:
integration-test:
name: Integration Tests for Kubernetes API with Maven
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-management'
strategy:
fail-fast: false
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mima-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
test:
name: Build and Test
runs-on: ubuntu-22.04
if: github.repository == 'apache/incubator-pekko-management'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
test:
name: Build and Test
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-management'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -65,6 +66,7 @@ jobs:
slf4j2-test:
name: Test Logback with slf4J2
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-management'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 6fa0044

Please sign in to comment.