From 69d927f1c8bb7bc2f72abfbd612d9c90a869923e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=A0=EA=B4=80=EA=B7=9C?= Date: Sat, 28 Mar 2026 21:15:22 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20prod=20deploy=20=EC=8A=AC=EB=9E=99?= =?UTF-8?q?=20=EB=A9=94=EC=8B=9C=EC=A7=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index c330891..4fb723e 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -66,5 +66,5 @@ jobs: curl -X POST ${{ secrets.SLACK_DEPLOY_WEBHOOK_URL }} \ -H 'Content-Type: application/json' \ -d "{ - \"text\": \"${ICON} *[Develop] ${STATUS}*\n• Repo: ${{ github.repository }}\n• Branch: develop\n• Author: @${{ github.actor }}\n• Commit: ${COMMIT_MSG}\n• Duration: ${DURATION}\n• <${ACTIONS_URL}|Actions 보기>\" + \"text\": \"${ICON} *[Production] ${STATUS}*\n• Repo: ${{ github.repository }}\n• Branch: develop\n• Author: @${{ github.actor }}\n• Commit: ${COMMIT_MSG}\n• Duration: ${DURATION}\n• <${ACTIONS_URL}|Actions 보기>\" }" From 5b0a7c0c8223c18716e8d99b9adf147ec2972a81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=ED=83=9C=EC=A7=84?= <140797244+taejinn@users.noreply.github.com> Date: Mon, 10 Aug 2026 05:05:52 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EA=B2=8C=EC=8B=9C=ED=8C=90=20?= =?UTF-8?q?=ED=81=AC=EB=A1=A4=EB=A7=81=20=EC=A4=91=EB=8B=A8=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crawling/koreatech_article/delete_article.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawling/koreatech_article/delete_article.py b/crawling/koreatech_article/delete_article.py index 740a1be..b9358cc 100644 --- a/crawling/koreatech_article/delete_article.py +++ b/crawling/koreatech_article/delete_article.py @@ -8,7 +8,7 @@ def make_sql(board_id, articles): FROM new_articles na JOIN new_koreatech_articles nka ON na.id = nka.article_id WHERE na.board_id = {board_id} - AND na.is_delete = 0 + AND na.is_deleted = 0 ''' exists = ', '.join(str(article.id) for article in articles)