-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # backend/src/main/java/com/festago/dto/FestivalCreateRequest.java # backend/src/main/java/com/festago/dto/StageCreateRequest.java # backend/src/main/java/com/festago/dto/TicketCreateRequest.java # backend/src/main/java/com/festago/dto/TicketValidationRequest.java # backend/src/main/java/com/festago/dto/TicketingRequest.java
- Loading branch information
Showing
129 changed files
with
2,062 additions
and
705 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
pull_request: | ||
branches: | ||
- dev | ||
- main | ||
paths: 'backend/**' | ||
|
||
defaults: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,40 @@ | ||
name: Closed Issue Notification | ||
on: | ||
issues: | ||
types: [closed] | ||
|
||
issues: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
create-issue: | ||
create-issue: | ||
name: Send closed issue notification to slack | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Send Issue | ||
uses: 8398a7/action-slack@v3 | ||
with: | ||
status: custom | ||
custom_payload: | | ||
{ | ||
text: "*이슈가 닫혔습니다!*", | ||
attachments: [{ | ||
fallback: 'fallback', | ||
color: '#7539DE', | ||
title: 'Title', | ||
text: '<${{ github.event.issue.html_url }}|${{ github.event.issue.title }}>', | ||
fields: [{ | ||
title: 'Issue number', | ||
value: '#${{ github.event.issue.number }}', | ||
short: true | ||
}, | ||
{ | ||
title: 'Author', | ||
value: '${{ github.event.issue.user.login }}', | ||
short: true | ||
}], | ||
actions: [{ | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Send Issue | ||
uses: 8398a7/action-slack@v3 | ||
with: | ||
status: custom | ||
custom_payload: | | ||
{ | ||
text: "*이슈가 닫혔습니다!*", | ||
attachments: [{ | ||
fallback: 'fallback', | ||
color: '#7539DE', | ||
title: 'Title', | ||
text: '<${{ github.event.issue.html_url }}|${{ github.event.issue.title }}>', | ||
fields: [{ | ||
title: 'Issue number', | ||
value: '#${{ github.event.issue.number }}', | ||
short: true | ||
}, | ||
{ | ||
title: 'Author', | ||
value: '${{ github.event.issue.user.login }}', | ||
short: true | ||
}], | ||
actions: [{ | ||
}] | ||
}] | ||
}] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_WEBHOOK_URL }} | ||
if: always() | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_WEBHOOK_URL }} | ||
if: always() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,40 @@ | ||
name: Opend Issue Notification | ||
on: | ||
issues: | ||
types: [opened] | ||
|
||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
create-issue: | ||
create-issue: | ||
name: Send opend issue notification to slack | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Send Issue | ||
uses: 8398a7/action-slack@v3 | ||
with: | ||
status: custom | ||
custom_payload: | | ||
{ | ||
text: "*새로운 이슈가 생성되었습니다!*", | ||
attachments: [{ | ||
fallback: 'fallback', | ||
color: '#1F7629', | ||
title: 'Title', | ||
text: '<${{ github.event.issue.html_url }}|${{ github.event.issue.title }}>', | ||
fields: [{ | ||
title: 'Issue number', | ||
value: '#${{ github.event.issue.number }}', | ||
short: true | ||
}, | ||
{ | ||
title: 'Author', | ||
value: '${{ github.event.issue.user.login }}', | ||
short: true | ||
}], | ||
actions: [{ | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Send Issue | ||
uses: 8398a7/action-slack@v3 | ||
with: | ||
status: custom | ||
custom_payload: | | ||
{ | ||
text: "*새로운 이슈가 생성되었습니다!*", | ||
attachments: [{ | ||
fallback: 'fallback', | ||
color: '#1F7629', | ||
title: 'Title', | ||
text: '<${{ github.event.issue.html_url }}|${{ github.event.issue.title }}>', | ||
fields: [{ | ||
title: 'Issue number', | ||
value: '#${{ github.event.issue.number }}', | ||
short: true | ||
}, | ||
{ | ||
title: 'Author', | ||
value: '${{ github.event.issue.user.login }}', | ||
short: true | ||
}], | ||
actions: [{ | ||
}] | ||
}] | ||
}] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_WEBHOOK_URL }} | ||
if: always() | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_WEBHOOK_URL }} | ||
if: always() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
android/festago/app/src/main/java/com/festago/festago/presentation/mapper/FestivalMapper.kt
This file was deleted.
Oops, something went wrong.
Empty file.
34 changes: 0 additions & 34 deletions
34
...stago/app/src/main/java/com/festago/festago/presentation/mapper/ReservationStageMapper.kt
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
...tago/app/src/main/java/com/festago/festago/presentation/mapper/ReservationTicketMapper.kt
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...festago/app/src/main/java/com/festago/festago/presentation/mapper/ReservedTicketMapper.kt
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
android/festago/app/src/main/java/com/festago/festago/presentation/mapper/StageMapper.kt
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...oid/festago/app/src/main/java/com/festago/festago/presentation/mapper/TicketCodeMapper.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.