From 26fd5e0fb40e09ef5279ad4726775024a31764f6 Mon Sep 17 00:00:00 2001 From: Rui Campos Date: Tue, 2 Jul 2024 14:29:47 +0100 Subject: [PATCH] fix: remove step for auto doc --- .github/workflows/release.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9ba1e62..f29c5a3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,25 +23,3 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create PR for Documentation - id: push_image_info - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - set -e - echo "Start." - # Configure git and Push updates - git config --global user.email github-actions[bot]@users.noreply.github.com - git config --global user.name github-actions[bot] - git config pull.rebase false - branch=automated-documentation-update-$GITHUB_RUN_ID - git checkout -b $branch - message='Automated documentation update' - # Add / update and commit - git add */**/README.md - git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true - # Push - if [ "$NO_UPDATES" != "true" ] ; then - git push origin "$branch" - gh pr create --title "$message" --body "$message" - fi