You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by fa...@apache.org on 2022/11/04 11:37:39 UTC

[incubator-pekko] branch main updated: change name of github repo so that workflows run for apache/incubator-pekko (#12)

This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new 991997fb42 change name of github repo so that workflows run for apache/incubator-pekko (#12)
991997fb42 is described below

commit 991997fb42c624a5150a744e83c1ce0ed4b1ba95
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Fri Nov 4 12:37:34 2022 +0100

    change name of github repo so that workflows run for apache/incubator-pekko (#12)
---
 .github/workflows/binary-compatibility-checks.yml | 2 +-
 .github/workflows/link-validator.yml              | 2 +-
 .github/workflows/multi-node.yml                  | 4 ++--
 .github/workflows/nightly-builds.yml              | 8 ++++----
 .github/workflows/publish-docs.yml                | 2 +-
 .github/workflows/publish.yml                     | 2 +-
 .github/workflows/scala3-build.yml                | 2 +-
 .github/workflows/scala3-compile.yml              | 2 +-
 .github/workflows/timing-tests.yml                | 2 +-
 9 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/.github/workflows/binary-compatibility-checks.yml b/.github/workflows/binary-compatibility-checks.yml
index c82800c40c..d587b4eb57 100644
--- a/.github/workflows/binary-compatibility-checks.yml
+++ b/.github/workflows/binary-compatibility-checks.yml
@@ -13,7 +13,7 @@ jobs:
   check-binary-compatibility:
     name: Check / Binary Compatibility
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/link-validator.yml b/.github/workflows/link-validator.yml
index 77eeed6a98..eb6842e6a0 100644
--- a/.github/workflows/link-validator.yml
+++ b/.github/workflows/link-validator.yml
@@ -8,7 +8,7 @@ on:
 jobs:
   validate-links:
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
       - name: Checkout
         uses: actions/checkout@v2
diff --git a/.github/workflows/multi-node.yml b/.github/workflows/multi-node.yml
index 7b861dc47e..5fc90b305b 100644
--- a/.github/workflows/multi-node.yml
+++ b/.github/workflows/multi-node.yml
@@ -14,7 +14,7 @@ jobs:
   run-multi-node-tests:
     name: Multi Node Test
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
       - name: Checkout
         uses: actions/checkout@v2
@@ -98,7 +98,7 @@ jobs:
   run-multi-node-aeron-tests:
     name: Multi Node Test with Artery Aeron UDP transport
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
       - name: Checkout
         uses: actions/checkout@v2
diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml
index acaddf2ab3..6f10b1b56f 100644
--- a/.github/workflows/nightly-builds.yml
+++ b/.github/workflows/nightly-builds.yml
@@ -10,7 +10,7 @@ jobs:
   akka-cluster-metrics-sigar:
     name: Akka Cluster Metrics Test with Sigar
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
 
       - name: Checkout
@@ -71,7 +71,7 @@ jobs:
   akka-classic-remoting-tests:
     name: Akka Classic Remoting Tests
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     strategy:
       fail-fast: false
       matrix:
@@ -126,7 +126,7 @@ jobs:
   jdk-nightly-build:
     name: JDK ${{ matrix.jdkVersion }} / Scala ${{ matrix.scalaVersion }}
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     strategy:
       fail-fast: false
       matrix:
@@ -224,7 +224,7 @@ jobs:
   akka-artery-aeron-tests:
     name: Akka Artery Aeron Tests
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml
index c734509ec1..c9cde48a4f 100644
--- a/.github/workflows/publish-docs.yml
+++ b/.github/workflows/publish-docs.yml
@@ -15,7 +15,7 @@ jobs:
   documentation:
     name: Documentation
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
       - name: Checkout
         uses: actions/checkout@v2
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index c893affb22..278851d319 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -14,7 +14,7 @@ jobs:
   sbt:
     name: sbt publish
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
       - name: Checkout
         uses: actions/checkout@v2
diff --git a/.github/workflows/scala3-build.yml b/.github/workflows/scala3-build.yml
index 9777f88f04..d1c45b792d 100644
--- a/.github/workflows/scala3-build.yml
+++ b/.github/workflows/scala3-build.yml
@@ -15,7 +15,7 @@ jobs:
   test:
     name: Test
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     strategy:
       matrix:
         command:
diff --git a/.github/workflows/scala3-compile.yml b/.github/workflows/scala3-compile.yml
index 90a5c536b4..23bbdd6720 100644
--- a/.github/workflows/scala3-compile.yml
+++ b/.github/workflows/scala3-compile.yml
@@ -12,7 +12,7 @@ jobs:
   compile:
     name: Compile
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     strategy:
       matrix:
         command:
diff --git a/.github/workflows/timing-tests.yml b/.github/workflows/timing-tests.yml
index 5a84285933..7332777cf1 100644
--- a/.github/workflows/timing-tests.yml
+++ b/.github/workflows/timing-tests.yml
@@ -10,7 +10,7 @@ jobs:
   akka-timing-sensitive-tests:
     name: Akka Tests taggedAs TimingTest
     runs-on: ubuntu-20.04
-    if: github.repository == 'akka/akka'
+    if: github.repository == 'apache/incubator-pekko'
     steps:
 
       - name: Checkout


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org