-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feature-dashboard-n…
…ovember Signed-off-by: yuda <[email protected]>
- Loading branch information
Showing
228 changed files
with
14,629 additions
and
921 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 |
---|---|---|
|
@@ -22,8 +22,25 @@ env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
||
jobs: | ||
mirinae: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Invoke mirinae release workflow | ||
id: mirinae | ||
uses: convictional/[email protected] | ||
with: | ||
owner: ${{ github.repository_owner }} | ||
repo: ${{ github.event.repository.name }} | ||
github_token: ${{ secrets.PAT_TOKEN }} | ||
workflow_file_name: dispatch_mirinae_release.yaml | ||
wait_workflow: true | ||
propagate_failure: true | ||
wait_interval: 5 | ||
ref: ${{ github.ref_name }} | ||
|
||
storybook: | ||
runs-on: ubuntu-latest | ||
needs: mirinae | ||
steps: | ||
- name: Invoke storybook release workflow | ||
uses: convictional/[email protected] | ||
|
@@ -38,6 +55,7 @@ jobs: | |
|
||
versioning_and_docker: | ||
runs-on: ubuntu-latest | ||
needs: mirinae | ||
outputs: | ||
new_commit_sha: ${{ steps.get_sha.outputs.NEW_COMMIT_SHA }} | ||
steps: | ||
|
@@ -71,8 +89,18 @@ jobs: | |
npm version $converted_version --no-git-tag-version --allow-same-version --no-commit-hooks --include-workspace-root -w=web | ||
echo "converted_version=$converted_version" >> "$GITHUB_OUTPUT" | ||
- name: Import GPG key | ||
id: import-gpg | ||
uses: crazy-max/[email protected] | ||
with: | ||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true | ||
|
||
- name: Configure git | ||
run: | | ||
git config --global user.signingkey "${{ secrets.CLOUDFORET_ADMIN_GPG_KEY_ID }}" | ||
git config --global user.email "${{ vars.GIT_EMAIL }}" | ||
git config --global user.name "${{ vars.GIT_USERNAME }}" | ||
|
@@ -86,8 +114,13 @@ jobs: | |
if: steps.check_changes.outputs.changed == 'true' | ||
id: get_sha | ||
run: | | ||
git commit -am "chore: version ${{ env.VERSION }}" | ||
git commit -s -am "chore: version ${{ env.VERSION }}" | ||
echo "NEW_COMMIT_SHA=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" | ||
env: | ||
GIT_AUTHOR_NAME: ${{ steps.import-gpg.outputs.name }} | ||
GIT_AUTHOR_EMAIL: ${{ steps.import-gpg.outputs.email }} | ||
GIT_COMMITTER_NAME: ${{ steps.import-gpg.outputs.name }} | ||
GIT_COMMITTER_EMAIL: ${{ steps.import-gpg.outputs.email }} | ||
|
||
- name: Push changes | ||
if: steps.check_changes.outputs.changed == 'true' | ||
|
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
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 |
---|---|---|
|
@@ -24,4 +24,5 @@ | |
"API_KEY": "api-key" | ||
} | ||
} | ||
"ADVANCED_SERVICE": {} | ||
} |
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
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
Oops, something went wrong.