diff --git a/.github/ISSUE_TEMPLATE/1-FEAT.md b/.github/ISSUE_TEMPLATE/1-FEAT.md index 0deef4b..45ff142 100644 --- a/.github/ISSUE_TEMPLATE/1-FEAT.md +++ b/.github/ISSUE_TEMPLATE/1-FEAT.md @@ -2,8 +2,8 @@ name: Feature Request about: 기능 구현 요청 description: 새로운 기능 구현 -title: "[Feat]: ~~" -labels: "🚀 기능 구현 🚀" +title: "[Feat] ~~" +labels: "🚀 기능 구현 🚀" assignees: '' --- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 684aa6f..d4560c4 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -15,7 +15,6 @@ ### 등록 전 확인 -- [ ] 모든 test가 pass했나요? - [ ] 모든 code가 well-formatted인가요? - [ ] commit message는 직관적이었을까요? - [ ] 삭제해야 할, 주석처리 된 코드는 없을까요? diff --git a/.github/workflows/Continuous Delivery.yml b/.github/workflows/Continuous Delivery.yml index 4a0cea0..271e70a 100644 --- a/.github/workflows/Continuous Delivery.yml +++ b/.github/workflows/Continuous Delivery.yml @@ -9,11 +9,6 @@ jobs: Delivery: runs-on: ubuntu-22.04 - env: - DB_URL: ${{ secrets.DB_URL }} - DB_USER: ${{ secrets.DB_USR }} - DB_PASSWORD: ${{ secrets.DB_PWD }} - steps: - name: Set up sources uses: actions/checkout@v4 diff --git a/.github/workflows/Continuous Integration.yml b/.github/workflows/Continuous Integration.yml index 2fb5605..024fb65 100644 --- a/.github/workflows/Continuous Integration.yml +++ b/.github/workflows/Continuous Integration.yml @@ -9,11 +9,6 @@ jobs: Test: runs-on: ubuntu-22.04 - env: - DB_URL: ${{ secrets.DB_URL }} - DB_USER: ${{ secrets.DB_USR }} - DB_PASSWORD: ${{ secrets.DB_PWD }} - steps: - name: Set up sources uses: actions/checkout@v4 diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 52a4e29..ce45b8d 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -30,4 +30,4 @@ jobs: command: | docker pull goldentrash/plantory:latest docker stop plantory - docker run -d --rm -p 8080:8080 --mount type=volume,src=resources,dst=/app/resources --name plantory goldentrash/plantory + docker run -d --rm -p 8080:8080 --mount type=volume,src=resources,dst=/app/resources --env-file plantory.env --name plantory goldentrash/plantory