-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
495 changed files
with
19,379 additions
and
11,242 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @AntonLantukh @dbudzins |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.ACTION_TOKEN }} | ||
ref: release | ||
|
@@ -23,7 +23,7 @@ jobs: | |
git config --global user.email '[email protected]' | ||
git fetch origin ${{ github.ref_name }} | ||
git merge origin/${{ github.ref_name }} | ||
yarn && yarn i18next | ||
yarn && yarn workspace @jwp/ott-web run i18next | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} | ||
|
||
|
@@ -40,7 +40,7 @@ jobs: | |
input-file: 'CHANGELOG.md' | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.ACTION_TOKEN }} | ||
title: Release Candidate - ${{ steps.changelog.outputs.tag }}${{ github.ref_name != 'develop' && ' (Hotfix)' || ''}} | ||
|
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
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 |
---|---|---|
@@ -1,88 +1,38 @@ | ||
{ | ||
"$schema": "https://unpkg.com/[email protected]/dist/schema.json", | ||
"sortFirst": [ | ||
"name", | ||
"description", | ||
"version", | ||
"private", | ||
"license", | ||
"repository", | ||
"author", | ||
"main", | ||
"exports", | ||
"engines", | ||
"workspaces", | ||
"scripts" | ||
], | ||
"sortFirst": ["name", "description", "version", "private", "license", "repository", "author", "main", "exports", "engines", "workspaces", "scripts"], | ||
"semverGroups": [ | ||
{ | ||
"dependencies": [ | ||
"codeceptjs", | ||
"codeceptjs**", | ||
"react-router", | ||
"react-router-dom", | ||
"typescript" | ||
], | ||
"packages": [ | ||
"**" | ||
], | ||
"dependencies": ["codeceptjs", "codeceptjs**", "react-router", "react-router-dom", "typescript"], | ||
"packages": ["**"], | ||
"isIgnored": true | ||
}, | ||
{ | ||
"range": "^", | ||
"dependencies": [ | ||
"**" | ||
], | ||
"packages": [ | ||
"**" | ||
], | ||
"dependencyTypes": [ | ||
"prod", | ||
"dev", | ||
"peer" | ||
] | ||
"dependencies": ["**"], | ||
"packages": ["**"], | ||
"dependencyTypes": ["prod", "dev", "peer"] | ||
} | ||
], | ||
"versionGroups": [ | ||
{ | ||
"label": "Ensure semver ranges for locally developed packages satisfy the local version", | ||
"dependencies": [ | ||
"@jwp/**", | ||
"**-config-jwp" | ||
], | ||
"dependencyTypes": [ | ||
"peer" | ||
], | ||
"packages": [ | ||
"**" | ||
], | ||
"dependencies": ["@jwp/**", "**-config-jwp"], | ||
"dependencyTypes": ["dev", "prod", "peer"], | ||
"packages": ["**"], | ||
"pinVersion": "*" | ||
}, | ||
{ | ||
"label": "Ensure local packages are installed as peerDependency", | ||
"dependencies": [ | ||
"@jwp/**", | ||
"**-config-jwp" | ||
], | ||
"dependencyTypes": [ | ||
"dev", | ||
"prod" | ||
], | ||
"packages": [ | ||
"**" | ||
], | ||
"label": "Ensure local packages are installed as dev or prod dependency", | ||
"dependencies": ["@jwp/**", "**-config-jwp"], | ||
"dependencyTypes": ["peer"], | ||
"packages": ["**"], | ||
"isBanned": true | ||
}, | ||
{ | ||
"dependencies": [ | ||
"@types/**" | ||
], | ||
"dependencyTypes": [ | ||
"!dev" | ||
], | ||
"packages": [ | ||
"**" | ||
], | ||
"dependencies": ["@types/**"], | ||
"dependencyTypes": ["!dev"], | ||
"packages": ["**"], | ||
"isBanned": true, | ||
"label": "@types packages should only be under devDependencies" | ||
} | ||
|
Oops, something went wrong.