-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from MONEYMONG/release/release-1.2.1
Release/release 1.2.1 -> release merge
- Loading branch information
Showing
112 changed files
with
2,125 additions
and
653 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Set to true to add reviewers to pull requests | ||
addReviewers: true | ||
|
||
# Set to true to add assignees to pull requests | ||
addAssignees: false | ||
|
||
# A list of reviewers to be added to pull requests (GitHub user name) | ||
reviewers: | ||
- Heonbyeong | ||
- jhg3410 | ||
- eunseo0105 | ||
|
||
# A number of reviewers added to the pull request | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 1 | ||
# A list of assignees, overrides reviewers if set | ||
# assignees: | ||
# - assigneeA | ||
|
||
# A number of assignees to add to the pull request | ||
# Set to 0 to add all of the assignees. | ||
# Uses numberOfReviewers if unset. | ||
# numberOfAssignees: 2 | ||
|
||
# A list of keywords to be skipped the process that add reviewers if pull requests include it | ||
# skipKeywords: | ||
# - wip |
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 |
---|---|---|
@@ -0,0 +1,122 @@ | ||
name: Android CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release/**' | ||
|
||
jobs: | ||
release_deploy_job: | ||
if: github.ref == 'refs/heads/release/release' | ||
runs-on: macos-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Create API Certificate | ||
run: | | ||
echo "sdk.dir=$ANDROID_SDK_ROOT" > ./local.properties | ||
echo "native_app_key=\"${{ secrets.NATIVE_APP_KEY }}\"" >> ./local.properties | ||
echo "CLOVA_OCR_DOCUMENT_SECRET=\"${{ secrets.CLOVA_OCR_DOCUMENT_SECRET }}\"" >> ./local.properties | ||
echo "CLOVA_OCR_DOCUMENT_BASEURL=\"${{ secrets.CLOVA_OCR_DOCUMENT_BASEURL }}\"" >> ./local.properties | ||
- name: Clean Build | ||
run: ./gradlew clean | ||
|
||
- name: Decode Service Account Key | ||
run: | | ||
echo "${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_KEY }}" | base64 --decode > ./app/service_account_key.json | ||
- name: Decode Keystore File | ||
run: | | ||
echo "${{ secrets.KEYSTORE_FILE }}" | base64 --decode > ./app/moneymong_keystore.jks | ||
- name: Install Dependencies | ||
run: | | ||
gem install bundler | ||
bundle install | ||
- name: Build & Deploy Android release | ||
env: | ||
SERVICE_ACCOUNT_KEY: ${{ github.workspace }}/app/service_account_key.json | ||
KEYSTORE_FILE: ${{ github.workspace }}/app/moneymong_keystore.jks | ||
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} | ||
KEYSTORE_KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | ||
KEYSTORE_KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | ||
CWD: ${{ github.workspace }} | ||
run: bundle exec fastlane deploy | ||
|
||
- name: Remove Credential | ||
run: | | ||
rm ./app/service_account_key.json | ||
rm ./app/moneymong_keystore.jks | ||
rm ./local.properties | ||
dev_deploy_job: | ||
if: contains(github.ref, 'release-') | ||
runs-on: macos-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Create API Certificate | ||
run: | | ||
echo "sdk.dir=$ANDROID_SDK_ROOT" > ./local.properties | ||
echo "native_app_key=\"${{ secrets.NATIVE_APP_KEY }}\"" >> ./local.properties | ||
echo "CLOVA_OCR_DOCUMENT_SECRET=\"${{ secrets.CLOVA_OCR_DOCUMENT_SECRET }}\"" >> ./local.properties | ||
echo "CLOVA_OCR_DOCUMENT_BASEURL=\"${{ secrets.CLOVA_OCR_DOCUMENT_BASEURL }}\"" >> ./local.properties | ||
- name: Clean Build | ||
run: ./gradlew clean | ||
|
||
- name: Decode Service Account Key | ||
run: | | ||
echo "${{ secrets.FIREBASE_SERVICE_ACCOUNT_KEY }}" | base64 --decode > ./app/firebase_credentials.json | ||
- name: Decode Keystore File | ||
run: | | ||
echo "${{ secrets.DEBUG_KEYSTORE_FILE }}" | base64 --decode > ./app/debug_keystore.jks | ||
- name: Install Dependencies | ||
run: | | ||
gem install bundler | ||
bundle install | ||
- name: Build & Deploy Distribute | ||
env: | ||
FIREBASE_CREDENTIALS: ${{ github.workspace }}/app/firebase_credentials.json | ||
DEBUG_KEYSTORE_FILE: ${{ github.workspace }}/app/debug_keystore.jks | ||
DEBUG_KEYSTORE_PASSWORD: ${{ secrets.DEBUG_KEYSTORE_PASSWORD }} | ||
DEBUG_KEYSTORE_KEY_ALIAS: ${{ secrets.DEBUG_KEYSTORE_KEY_ALIAS }} | ||
DEBUG_KEYSTORE_KEY_PASSWORD: ${{ secrets.DEBUG_KEYSTORE_KEY_PASSWORD }} | ||
APP_ID: ${{ secrets.FIREBASE_TB_APP_ID }} | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
CWD: ${{ github.workspace }} | ||
run: bundle exec fastlane distribute | ||
|
||
- name: Remove Credential | ||
run: | | ||
rm ./local.properties | ||
rm ./app/firebase_credentials.json |
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 |
---|---|---|
@@ -0,0 +1,173 @@ | ||
name: Auto Reviewer | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'develop' | ||
types: [ opened, reopened ] | ||
|
||
jobs: | ||
assign-reviewer: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Assign Reviewers | ||
uses: kentaro-m/[email protected] | ||
with: | ||
configuration-path: '.github/reviewer.yml' | ||
|
||
- name: Get PR Labels | ||
run: echo "PR_LABELS=${{ github.event.pull_request.labels[0].name }}" >> $GITHUB_ENV | ||
|
||
- name: Get PR URL | ||
run: echo "PR_URL=${{ github.event.pull_request.html_url }}" >> $GITHUB_ENV | ||
|
||
- name: Get PR Author | ||
run: echo "PR_AUTHOR=${{ github.event.pull_request.user.login }}" >> $GITHUB_ENV | ||
|
||
- name: Get Assigned Reviewer | ||
id: assigned_reviewers_id | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const { data: pullRequest } = await github.rest.pulls.get({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.payload.pull_request.number | ||
}); | ||
const reviewers = pullRequest.requested_reviewers.map(reviewer => reviewer.login).join(','); | ||
core.setOutput('reviewers', reviewers) | ||
# highest: until 24hours | ||
# high: until 48hours | ||
# medium: until 72hours | ||
# low: until 120hours | ||
# lowest: until 168hours | ||
- name: Calculate Review Due Date | ||
id: calculate_due_date_id | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const createdAt = new Date(process.env.CREATED_AT); | ||
const label = process.env.PR_LABELS; | ||
const hour_abs = 60 * 60 * 1000; | ||
let dueDate; | ||
if (label.includes("highest")) { | ||
dueDate = new Date(createdAt.getTime() + (24 * hour_abs)); | ||
} else if (label.includes("high")) { | ||
dueDate = new Date(createdAt.getTime() + (48 * hour_abs)); | ||
} else if (label.includes("medium")) { | ||
dueDate = new Date(createdAt.getTime() + (72 * hour_abs)); | ||
} else if (label.includes("low")) { | ||
dueDate = new Date(createdAt.getTime() + (120 * hour_abs)); | ||
} else if (label.includes("lowest")) { | ||
dueDate = new Date(createdAt.getTime() + (168 * hour_abs)); | ||
} else { | ||
core.setFailed(`Not Matched Labels.`); | ||
} | ||
const year = dueDate.getFullYear(); | ||
const month = dueDate.getMonth() + 1; | ||
const day = dueDate.getDate(); | ||
const hours = dueDate.getHours(); | ||
const period = hours >= 12 ? '오후' : '오전'; | ||
const formattedHour = hours % 12 || 12; | ||
const formattedTime = `${year}년 ${month}월 ${day}일 ${period} ${formattedHour}시`; | ||
core.setOutput('due_date', formattedTime); | ||
env: | ||
PR_LABELS: ${{ env.PR_LABELS }} | ||
CREATED_AT: ${{ github.event.pull_request.created_at }} | ||
|
||
- name: Get Slack Member ID | ||
id: slack_id | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const reviewer = process.env.PR_REVIEWER | ||
let selectedId; | ||
if (reviewer === "Heonbyeong") { | ||
selectedId = process.env.SLACK_ID_ABH; | ||
} else if (reviewer === "jhg3410") { | ||
selectedId = process.env.SLACK_ID_JHG; | ||
} else if (reviewer === "eunseo0105") { | ||
selectedId = process.env.SLACK_ID_KES; | ||
} else { | ||
core.setFailed(`Not Found Author.`); | ||
} | ||
core.setOutput('selected_id', selectedId); | ||
env: | ||
PR_REVIEWER: ${{ steps.assigned_reviewers_id.outputs.reviewers }} | ||
SLACK_ID_ABH: ${{ secrets.SLACK_ID_ABH }} | ||
SLACK_ID_JHG: ${{ secrets.SLACK_ID_JHG }} | ||
SLACK_ID_KES: ${{ secrets.SLACK_ID_KES }} | ||
|
||
- name: Save Slack Member ID to Github ENV | ||
run: echo "SLACK_MEMBER_ID=${{ steps.slack_id.outputs.selected_id }}" >> $GITHUB_ENV | ||
|
||
- name: Send custom JSON data to Slack workflow | ||
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ env.SLACK_CHANNEL_ID }} | ||
payload: | | ||
{ | ||
"text": "새로운 PR이 등록되었습니다! 👾\n마감일 전까지 늦지 않게 리뷰를 완료하고, 해당 스레드에 공유해주세요!", | ||
"blocks": [ | ||
{ | ||
"type": "header", | ||
"text": { | ||
"type": "plain_text", | ||
"text": "새로운 PR이 등록되었습니다! 👾", | ||
"emoji": true | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "마감일 전까지 늦지 않게 리뷰를 완료하고, 해당 스레드에 공유해주세요!\n<${{ env.PR_URL }}>" | ||
} | ||
}, | ||
{ | ||
"type": "divider" | ||
}, | ||
{ | ||
"type": "section", | ||
"fields": [ | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*PR Author*\n${{ env.PR_AUTHOR }}" | ||
}, | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Reviewer*\n<@${{ env.SLACK_MEMBER_ID }}>" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "section", | ||
"fields": [ | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Priority*\n${{ env.PR_LABELS }}" | ||
}, | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Due Date*\n${{ env.DUE_DATE }}" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_PR_BOT_TOKEN }} | ||
SLACK_CHANNEL_ID: ${{ secrets.SLACK_ANDROID_CHANNEL_ID }} | ||
DUE_DATE: ${{ steps.calculate_due_date_id.outputs.due_date }} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 +1,6 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "fastlane" | ||
|
||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') | ||
eval_gemfile(plugins_path) if File.exist?(plugins_path) |
Oops, something went wrong.