This is an automated email from the ASF dual-hosted git repository.
mtaha pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new 7ae3081f Fix issue with the CI build and labeler (#2183)
7ae3081f is described below
commit 7ae3081f479e655ff1f5592694ad18d68c11434b
Author: John Gemignani <[email protected]>
AuthorDate: Mon Jun 2 12:23:11 2025 -0700
Fix issue with the CI build and labeler (#2183)
The build now needs to use https:, instead of git:
The labeler now requires a new step before running.
Modified the following files -
.github/workflows/installcheck.yaml
.github/workflows/labeler.yml
---
.github/workflows/installcheck.yaml | 4 ++--
.github/workflows/labeler.yml | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/installcheck.yaml
b/.github/workflows/installcheck.yaml
index b96c2854..daa58e7f 100644
--- a/.github/workflows/installcheck.yaml
+++ b/.github/workflows/installcheck.yaml
@@ -13,7 +13,7 @@ jobs:
steps:
- name: Get latest commit id of PostgreSQL 16
run: |
- echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_16_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
+ echo "PG_COMMIT_HASH=$(git ls-remote
https://git.postgresql.org/git/postgresql.git refs/heads/REL_16_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
- name: Cache PostgreSQL 16
uses: actions/cache@v3
@@ -30,7 +30,7 @@ jobs:
- name: Install PostgreSQL 16 and some extensions
if: steps.pg16cache.outputs.cache-hit != 'true'
run: |
- git clone --depth 1 --branch REL_16_STABLE
git://git.postgresql.org/git/postgresql.git ~/pg16source
+ git clone --depth 1 --branch REL_16_STABLE
https://git.postgresql.org/git/postgresql.git ~/pg16source
cd ~/pg16source
./configure --prefix=$HOME/pg16 CFLAGS="-std=gnu99 -ggdb -O0"
--enable-cassert
make install -j$(nproc) > /dev/null
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index 4234e358..266df4ce 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -9,6 +9,9 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
- name: Apply branch labels
uses: actions/[email protected]