Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/binary-compatibility-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
check-binary-compatibility:
name: Check / Binary Compatibility
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fossa:
name: Fossa
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
validate-links:
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/multi-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run-multi-node-tests:
name: Multi Node Test
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run-multi-node-aeron-tests:
name: Multi Node Test with Artery Aeron UDP transport
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
akka-cluster-metrics-sigar:
name: Akka Cluster Metrics Test with Sigar
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:

- name: Checkout
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
jdk-nightly-build:
name: JDK ${{ matrix.jdkVersion }} / Scala ${{ matrix.scalaVersion }}
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
akka-artery-aeron-tests:
name: Akka Artery Aeron Tests
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
documentation:
name: Documentation
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
sbt:
name: sbt publish
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/timing-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
akka-timing-sensitive-tests:
name: Akka Tests taggedAs TimingTest
runs-on: ubuntu-22.04
if: github.repository == 'akka/akka'
if: github.event.repository.fork == false
steps:

- name: Checkout
Expand Down
Loading