diff --git a/.github/workflows/test_migration.yml b/.github/workflows/test_migration.yml index e4e196ad..5c26cf9c 100644 --- a/.github/workflows/test_migration.yml +++ b/.github/workflows/test_migration.yml @@ -56,10 +56,18 @@ jobs: issue-number: "${{ github.event.number }}" body-includes: Found the following differences in the sql schema comment-author: github-actions[bot] - - run: | - curl \ - -X POST \ - ${{ github.event.pull_request.comments_url }} \ - -H "Content-Type: application/json" \ - -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - --data '{ "body": "Found the following differences in the sql schema:
To get from local migrations to auto migration state one would need to Test concurrency
" }' + - name: Create comment + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: "${{ github.event.number }}" + comment-id: "${{ steps.fc.outputs.comment-id }}" + body: | + Found the following differences in the sql schema: +
+ To get from local migrations to auto migration state one would need to + + create-or-update-comment + +
+ edit-mode: replace + reactions: eyes