Skip to content

Commit

Permalink
feat: sql-explain-hook 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Jul 23, 2024
1 parent b787842 commit 15671b7
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/sql-explain-hook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Sql Explain Hook

on:
pull_request:
branches: ["main"]
workflow_dispatch:

env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}

jobs:
sql-explain-hook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"

- name: Jooq Code Generation
run: |
./gradlew --info jooqCodegenAll
- name: Test with Gradle
run: |
./gradlew --info api-repo:generateExplainDocs
- name: Zip Explain Docs
run: |
zip -r explain-docs.zip api-repo/test/resources/explain/*
mv explain-docs.zip $GITHUB_WORKSPACE
- name: Upload Explain Docs
run: |
curl \
-F 'payload_json={"username": "GitHubAction", "content": "SqlExplainHook - PR: ${GITHUB_REF}, Commit: ${GITHUB_SHA}"}' \
-F "file1=@$GITHUB_WORKSPACE/explain-docs.zip" \
$DISCORD_WEBHOOK

0 comments on commit 15671b7

Please sign in to comment.