Skip to content

Commit

Permalink
[init] feat(init): init
Browse files Browse the repository at this point in the history
  • Loading branch information
rlatkd committed Jun 28, 2024
1 parent 8ee68bb commit 523fb0f
Show file tree
Hide file tree
Showing 53 changed files with 2,957 additions and 6 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/BE_CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: BE CI

on:
pull_request:
branches:
- dev
types: [ opened ]

permissions:
contents: read

jobs:
build:
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: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run : ./gradlew clean build -x test
2 changes: 1 addition & 1 deletion .github/workflows/DEV_TRIGGER.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: issue-key
with:
from: commits

- name: Issue Transitioned
if: steps.issue-key.outputs.issue != ''
uses: atlassian/gajira-transition@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/FEAT_TRIGGER.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: issue-key
with:
from: commits

- name: Issue Transitioned
if: steps.issue-key.outputs.issue != ''
uses: atlassian/gajira-transition@master
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/PROD_SYNCHRONIZE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ permissions: #github actions bot에게 권한 열기
jobs:
prod-synchronize:
runs-on: ubuntu-latest

steps:
- name: Checkout Dev Branch
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/PR_ALARM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: PR Alarm

on:
pull_request:
types: [opened, closed]
types: [ opened, closed ]

jobs:
pr-alarm:
Expand All @@ -18,7 +18,7 @@ jobs:
elif [ "${{ github.event.action }}" == "closed" ]; then
echo "::set-output name=message::[CLOSE] https://github.com/Try-AngIe/cms-plus/pulls"
fi
- name: Push Alarm
uses: rtCamp/action-slack-notify@master
env:
Expand Down
Loading

0 comments on commit 523fb0f

Please sign in to comment.