Browse Source

fix: release-pr indentation

pull/1892/head
Wing-Kam Wong 2 years ago
parent
commit
4c8107f22e
  1. 13
      .github/workflows/release-pr.yml

13
.github/workflows/release-pr.yml

@ -2,11 +2,10 @@ name: 'PR Release'
on: on:
pull_request: pull_request:
types: [ # opened: pull request is created
opened, # pull request is created # reopened: closed pull request is reopened
reopened, # closed pull request is reopened # synchronize: commit(s) pushed to the pull request
synchronize # commit(s) pushed to the pull request types: [opened, reopened, synchronize]
]
paths: paths:
- "packages/nocodb-sdk/**" - "packages/nocodb-sdk/**"
- "packages/nc-gui/**" - "packages/nc-gui/**"
@ -73,8 +72,10 @@ jobs:
DOCKERHUB_TOKEN: "${{ secrets.DOCKERHUB_TOKEN }}" DOCKERHUB_TOKEN: "${{ secrets.DOCKERHUB_TOKEN }}"
leave-comment: leave-comment:
runs-on: 'ubuntu-latest'
needs: [release-docker, set-tag] needs: [release-docker, set-tag]
uses: peter-evans/commit-comment@v2 steps:
- uses: peter-evans/commit-comment@v2
with: with:
body: | body: |
The PR changes have been deployed. Pleae run the following command to verify: The PR changes have been deployed. Pleae run the following command to verify:

Loading…
Cancel
Save