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/pekko.git
The following commit(s) were added to refs/heads/main by this push:
new 84daa52649 set up CI for 1.3 branch (#2273)
84daa52649 is described below
commit 84daa52649ef8a546f7b9de00d7984b21b32b8e9
Author: PJ Fanning <[email protected]>
AuthorDate: Fri Sep 26 14:45:25 2025 +0100
set up CI for 1.3 branch (#2273)
---
.github/workflows/nightly-1.1-builds.yml | 3 +--
.github/workflows/nightly-1.2-builds.yml | 7 +++----
.../workflows/{nightly-1.1-builds.yml => nightly-1.3-builds.yml} | 8 ++++----
.github/workflows/publish-1.1-nightly.yml | 3 +--
.github/workflows/publish-1.2-nightly.yml | 3 +--
.../{publish-1.1-nightly.yml => publish-1.3-nightly.yml} | 6 +++---
6 files changed, 13 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/nightly-1.1-builds.yml
b/.github/workflows/nightly-1.1-builds.yml
index 139a45add5..87e58f689b 100644
--- a/.github/workflows/nightly-1.1-builds.yml
+++ b/.github/workflows/nightly-1.1-builds.yml
@@ -9,8 +9,7 @@
name: Nightly Builds (1.1)
on:
- schedule:
- - cron: "0 0 * * *"
+ # no longer scheduled, but can be triggered manually
workflow_dispatch:
permissions: {}
diff --git a/.github/workflows/nightly-1.2-builds.yml
b/.github/workflows/nightly-1.2-builds.yml
index 0b18b3c513..0ed9034f59 100644
--- a/.github/workflows/nightly-1.2-builds.yml
+++ b/.github/workflows/nightly-1.2-builds.yml
@@ -9,8 +9,7 @@
name: Nightly Builds (1.2)
on:
- schedule:
- - cron: "0 0 * * *"
+ # no longer scheduled, but can be triggered manually
workflow_dispatch:
permissions: {}
@@ -81,7 +80,7 @@ jobs:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
fetch-tags: true
- ref: 1.1.x
+ ref: 1.2.x
- name: Setup Java 11
uses: actions/setup-java@v5
@@ -132,7 +131,7 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- ref: 1.1.x
+ ref: 1.2.x
- name: Setup Java ${{ matrix.javaVersion }}
uses: actions/setup-java@v5
diff --git a/.github/workflows/nightly-1.1-builds.yml
b/.github/workflows/nightly-1.3-builds.yml
similarity index 98%
copy from .github/workflows/nightly-1.1-builds.yml
copy to .github/workflows/nightly-1.3-builds.yml
index 139a45add5..4b58ec7949 100644
--- a/.github/workflows/nightly-1.1-builds.yml
+++ b/.github/workflows/nightly-1.3-builds.yml
@@ -6,7 +6,7 @@
# This file is part of the Apache Pekko project, which was derived from Akka.
#
-name: Nightly Builds (1.1)
+name: Nightly Builds (1.3)
on:
schedule:
@@ -26,7 +26,7 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- ref: 1.1.x
+ ref: 1.3.x
- name: Setup Java 11
uses: actions/setup-java@v5
@@ -81,7 +81,7 @@ jobs:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
fetch-tags: true
- ref: 1.1.x
+ ref: 1.3.x
- name: Setup Java 11
uses: actions/setup-java@v5
@@ -132,7 +132,7 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- ref: 1.1.x
+ ref: 1.3.x
- name: Setup Java ${{ matrix.javaVersion }}
uses: actions/setup-java@v5
diff --git a/.github/workflows/publish-1.1-nightly.yml
b/.github/workflows/publish-1.1-nightly.yml
index d4230e73d6..37cfa37215 100644
--- a/.github/workflows/publish-1.1-nightly.yml
+++ b/.github/workflows/publish-1.1-nightly.yml
@@ -20,9 +20,8 @@
name: Publish nightly 1.1 snapshots
on:
+ # no longer scheduled, but can be triggered manually
workflow_dispatch:
- schedule:
- - cron: "0 0 * * *"
permissions:
contents: read
diff --git a/.github/workflows/publish-1.2-nightly.yml
b/.github/workflows/publish-1.2-nightly.yml
index 478c30a227..1877bc4433 100644
--- a/.github/workflows/publish-1.2-nightly.yml
+++ b/.github/workflows/publish-1.2-nightly.yml
@@ -20,9 +20,8 @@
name: Publish nightly 1.2 snapshots
on:
+ # no longer scheduled, but can be triggered manually
workflow_dispatch:
- schedule:
- - cron: "0 0 * * *"
permissions:
contents: read
diff --git a/.github/workflows/publish-1.1-nightly.yml
b/.github/workflows/publish-1.3-nightly.yml
similarity index 96%
copy from .github/workflows/publish-1.1-nightly.yml
copy to .github/workflows/publish-1.3-nightly.yml
index d4230e73d6..fe46e7f04d 100644
--- a/.github/workflows/publish-1.1-nightly.yml
+++ b/.github/workflows/publish-1.3-nightly.yml
@@ -17,7 +17,7 @@
# Based on Apache Arrow's java-nightly workflow
#
https://github.com/apache/arrow/blob/master/.github/workflows/java_nightly.yml
-name: Publish nightly 1.1 snapshots
+name: Publish nightly 1.3 snapshots
on:
workflow_dispatch:
@@ -29,7 +29,7 @@ permissions:
jobs:
publish-nightly:
- name: Publish 1.1 nightly
+ name: Publish 1.3 nightly
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko'
env:
@@ -40,7 +40,7 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- ref: 1.1.x
+ ref: 1.3.x
- name: Setup Java 11
uses: actions/setup-java@v5
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]