From d5a47ccbd93f2c8184c0b1e125e7f9c6b94da98c Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Fri, 8 Mar 2024 10:34:14 -0500 Subject: [PATCH] test workflow should create a PR updating README on any trigger as long as it's running in report mode --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c9a60c63..df42e70f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -186,15 +186,15 @@ jobs: fi - name: Update README - if: ${{ steps.diff.outputs.diff == 'true' && github.event_name == 'push' }} + if: ${{ steps.diff.outputs.diff == 'true' }} run: python .github/compat/update_compat_table.py ".github/compat/compat.md" "README.md" - name: Print README diff - if: ${{ steps.diff.outputs.diff == 'true' && github.event_name == 'push' }} + if: ${{ steps.diff.outputs.diff == 'true' }} run: git diff README.md - name: Create pull request - if: ${{ steps.diff.outputs.diff == 'true' && github.event_name == 'push' }} + if: ${{ steps.diff.outputs.diff == 'true' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |