From c670936f9167ebbf43d4a4435e02a3bfdd51f85f Mon Sep 17 00:00:00 2001 From: celeron533 Date: Fri, 24 Jan 2025 04:43:14 +0000 Subject: [PATCH] disable workflow step "publish to master" --- .github/workflows/update-standard.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-standard.yml b/.github/workflows/update-standard.yml index 4034295..75b6c7f 100644 --- a/.github/workflows/update-standard.yml +++ b/.github/workflows/update-standard.yml @@ -66,8 +66,9 @@ jobs: if: steps.diff_files.outputs.diff_lines > 0 - name: Run tests run: tox - - name: Publish to master - uses: mikeal/publish-to-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: success() && steps.diff_files.outputs.diff_lines > 0 + # temporary disable "publish to master", which may commit the changes in an unapproved PR + # - name: Publish to master + # uses: mikeal/publish-to-github-action@master + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # if: success() && steps.diff_files.outputs.diff_lines > 0