File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,15 +190,15 @@ jobs:
190190 with :
191191 github-token : ${{ secrets.GITHUB_TOKEN }}
192192 script : |
193- // Delete previous migration info comments
193+ // Delete previous migration info comments for this specific database
194194 const comments = await github.rest.issues.listComments({
195195 issue_number: context.issue.number,
196196 owner: context.repo.owner,
197197 repo: context.repo.repo,
198198 per_page: 100
199199 });
200200
201- const MIGRATION_HEADER = '## Approve Database Migration';
201+ const MIGRATION_HEADER = '## Approve Database Migration `${{ inputs.database_name }}` database on `${{ inputs.azure_environment }}` ';
202202
203203 for (const comment of comments.data) {
204204 if (comment.body && comment.body.startsWith(MIGRATION_HEADER)) {
You can’t perform that action at this time.
0 commit comments