forked from tty-pt/scripts
-
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.
Add .github folder and change package name
- Loading branch information
Paulo Andre Azevedo Quirino
committed
Apr 12, 2024
1 parent
f416600
commit 562da5e
Showing
5 changed files
with
65 additions
and
1 deletion.
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 @@ | ||
* @MOV-AI/frontend-team |
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,14 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
allow: | ||
# Allow updates for MOV.AI libraries | ||
- dependency-name: "@mov-ai/*" | ||
registries: | ||
npm-github: | ||
type: npm-registry | ||
url: https://npm.pkg.github.com/mov-ai | ||
token: ${{secrets.GITHUB_TOKEN}} |
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,23 @@ | ||
name: "Deploy - On branch main/release Push" | ||
on: | ||
push: | ||
branches: | ||
- movai | ||
- "releases/**" | ||
|
||
jobs: | ||
CI: | ||
uses: MOV-AI/.github/.github/workflows/[email protected] | ||
with: | ||
deploy: "true" | ||
run_tests: "true" | ||
pm: "pnpm" | ||
secrets: | ||
auto_commit_user: ${{ secrets.RAISE_BOT_COMMIT_USER }} | ||
auto_commit_mail: ${{ secrets.RAISE_BOT_COMMIT_MAIL }} | ||
auto_commit_pwd: ${{ secrets.RAISE_BOT_COMMIT_PASSWORD }} | ||
registry_user: ${{ secrets.PORTUS_APP_USER }} | ||
registry_password: ${{ secrets.PORTUS_APP_TOKEN }} | ||
gh_token: ${{ secrets.GITHUB_TOKEN }} | ||
sonar_token: ${{ secrets.SONAR_TOKEN }} | ||
npm_token: ${{ secrets.NPM_TOKEN }} |
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,26 @@ | ||
name: "CI - On main/dev/release branches" | ||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
- main | ||
- movai | ||
- "releases/**" | ||
- 'develop/**' | ||
|
||
jobs: | ||
CI: | ||
uses: MOV-AI/.github/.github/workflows/[email protected] | ||
with: | ||
deploy: "false" | ||
run_tests: "true" | ||
pm: "pnpm" | ||
secrets: | ||
auto_commit_user: ${{ secrets.RAISE_BOT_COMMIT_USER }} | ||
auto_commit_mail: ${{ secrets.RAISE_BOT_COMMIT_MAIL }} | ||
auto_commit_pwd: ${{ secrets.RAISE_BOT_COMMIT_PASSWORD }} | ||
registry_user: ${{ secrets.PORTUS_APP_USER }} | ||
registry_password: ${{ secrets.PORTUS_APP_TOKEN }} | ||
gh_token: ${{ secrets.GITHUB_TOKEN }} | ||
sonar_token: ${{ secrets.SONAR_TOKEN }} | ||
npm_token: ${{ secrets.NPM_TOKEN }} |
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