From 28acfce6af5e99265999dc7b20499d8d0ea7049f Mon Sep 17 00:00:00 2001 From: IkiWiki Date: Sun, 25 Aug 2024 21:43:05 -0400 Subject: [PATCH] forgejo-ci: remove quotes from Pr title --- .forgejo/workflows/preview.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/preview.yaml b/.forgejo/workflows/preview.yaml index 592f3f5..52cc8e1 100644 --- a/.forgejo/workflows/preview.yaml +++ b/.forgejo/workflows/preview.yaml @@ -11,7 +11,7 @@ jobs: - name: Environment setup run: | apk add git ikiwiki po4a perl-yaml-tiny tree nodejs jq coreutils curl - echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} | jq .title | tr ' ' '-' | tr -d ':')" >> $GITHUB_ENV + echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' )" >> $GITHUB_ENV - name: Repo pull uses: actions/checkout@v4 with: