We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3b9115 commit 8cc8abeCopy full SHA for 8cc8abe
1 file changed
.github/workflows/sql-review-action.yml
@@ -8,7 +8,7 @@ on:
8
- "migrations/*.sql"
9
10
jobs:
11
- check-release-on-test:
+ check-release-on-prod:
12
permissions:
13
pull-requests: write # write permission required to allow the action writes the check results to the comment.
14
runs-on: ubuntu-latest # use self-hosted machines if your Bytebase runs in internal networks.
@@ -23,5 +23,6 @@ jobs:
23
BYTEBASE_SERVICE_ACCOUNT: ci@service.bytebase.com
24
BYTEBASE_SERVICE_ACCOUNT_SECRET: ${{secrets.BYTEBASE_SERVICE_ACCOUNT_SECRET}}
25
BYTEBASE_PROJECT: "projects/project-sample"
26
- BYTEBASE_TARGETS: "instances/test-sample-instance/databases/hr_test"
+ BYTEBASE_TARGETS: "instances/test-sample-instance/databases/hr_prod"
27
FILE_PATTERN: "migrations/*.sql"
28
+ GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }}
0 commit comments