This is an automated email from the ASF dual-hosted git repository. jgemignani pushed a commit to branch PG14 in repository https://gitbox.apache.org/repos/asf/age.git
commit 999464fa39d218798d3380933465f7b6d41e38da 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 8d89066d..547575e8 100644 --- a/.github/workflows/installcheck.yaml +++ b/.github/workflows/installcheck.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Get latest commit id of PostgreSQL 14 run: | - echo "PG_COMMIT_HASH=$(git ls-remote git://git.postgresql.org/git/postgresql.git refs/heads/REL_14_STABLE | awk '{print $1}')" >> $GITHUB_ENV + echo "PG_COMMIT_HASH=$(git ls-remote https://git.postgresql.org/git/postgresql.git refs/heads/REL_14_STABLE | awk '{print $1}')" >> $GITHUB_ENV - name: Cache PostgreSQL 14 uses: actions/cache@v3 @@ -30,7 +30,7 @@ jobs: - name: Install PostgreSQL 14 and some extensions if: steps.pg14cache.outputs.cache-hit != 'true' run: | - git clone --depth 1 --branch REL_14_STABLE git://git.postgresql.org/git/postgresql.git ~/pg14source + git clone --depth 1 --branch REL_14_STABLE https://git.postgresql.org/git/postgresql.git ~/pg14source cd ~/pg14source ./configure --prefix=$HOME/pg14 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]
