From 77a462b74c37d0d4acc8a88d5954be52b278c06b Mon Sep 17 00:00:00 2001 From: kentsanggds Date: Mon, 27 Nov 2023 11:51:28 +0000 Subject: [PATCH] Update create-pr-on-tags.yaml to remove k prefix filter --- .github/workflows/create-pr-on-tags.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/create-pr-on-tags.yaml b/.github/workflows/create-pr-on-tags.yaml index c2109d8e..22428f75 100644 --- a/.github/workflows/create-pr-on-tags.yaml +++ b/.github/workflows/create-pr-on-tags.yaml @@ -14,8 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set GH_REF - # Change back to git tag once we no longer need the k versions - run: echo "GH_REF=`echo $(git fetch -t -q && git tag -l "k*" | sort --version-sort | tail -n1)`" >> $GITHUB_ENV + run: echo "GH_REF=`echo $(git fetch -t -q | sort --version-sort | tail -n1)`" >> $GITHUB_ENV - run: bash ./docker/create-pr.sh env: GH_TOKEN: ${{ secrets.PR_GITHUB_TOKEN }}