From 448e1d387842faf7759f9bd928310118ce9ec787 Mon Sep 17 00:00:00 2001 From: Brian Date: Thu, 1 Dec 2022 11:28:00 -0500 Subject: [PATCH] LTS-PR-Hotfix added workaround for action issue --- .github/workflows/lts-release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/lts-release.yml b/.github/workflows/lts-release.yml index 1de652498..0ceb07fee 100644 --- a/.github/workflows/lts-release.yml +++ b/.github/workflows/lts-release.yml @@ -68,6 +68,10 @@ jobs: cat > lts.config.json <<< $(jq -r '[nth(0,1,2,3,4,5,6,7,8,9,10,11;.[] | select(.name | match(".+LTS")) | .name | rtrimstr("-LTS"))] | unique | reverse' <<< $(curl -Ls -H "Accept: application/vnd.github+json" -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/Bandwidth/api-docs/releases)) env: TOKEN: ${{ secrets.DX_GITHUB_TOKEN }} + + - uses: actions/checkout@v3 + + - run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Create Pull Request id: lts-pr