File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -175,18 +175,14 @@ jobs:
175
175
number1=${{ env.SECOND_QUERY }}
176
176
number2=${{ env.FIRST_QUERY }}
177
177
diff=$((number1 - number2))
178
- data=$(mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select app, name from django_migrations ORDER by -id limit $diff;" edxapp;)
178
+ data=$(mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select name from django_migrations ORDER by -id limit $diff;" edxapp;)
179
179
echo "$data" > cleaned_data.txt
180
180
shell : bash
181
181
182
182
- name : Comment PR
183
183
uses : thollander/actions-comment-pull-request@v2
184
184
with :
185
- message : |
186
- Here is the data:
187
- ```
188
- $(cat cleaned_data.txt)
189
- ```
185
+ filePath : cleaned_data.txt
190
186
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
191
187
192
188
# This job aggregates test results. It's the required check for branch protection.
You can’t perform that action at this time.
0 commit comments