generated from JuanVilla424/github-cicd-template
-
-
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.
๐ From prod โ Bump version: v1.0.2-prod into main (#3)
Automatically created pull request for release v1.0.2-prod into main branch.
- Loading branch information
Showing
56 changed files
with
411 additions
and
1,742 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 |
---|---|---|
@@ -1,10 +1,6 @@ | ||
[bumpversion] | ||
current_version = 1.0.8 | ||
current_version = 1.0.2 | ||
commit = True | ||
tag = False | ||
|
||
[bumpversion:file:pyproject.toml] | ||
|
||
[bumpversion:file:backend/pyproject.toml] | ||
|
||
[bumpversion:file:frontend/package.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,3 @@ | ||
INPUT_DIR=input | ||
OUTPUT_DIR=output | ||
LANGS=["English","Spanish","French","German"] |
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 +1,5 @@ | ||
* text eol=lf | ||
*.yml text eol=lf | ||
*.yaml text eol=lf | ||
*.py text eol=lf | ||
*.md text eol=lf | ||
*.txt text eol=lf |
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 |
---|---|---|
|
@@ -17,9 +17,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
- name: Install dependencies | ||
|
@@ -33,7 +33,7 @@ jobs: | |
- name: Format check with Black | ||
run: | | ||
source venv/bin/activate | ||
black --check scripts/ | ||
black --check langding/ | ||
- name: Lint with Pylint | ||
run: | | ||
source venv/bin/activate | ||
|
@@ -50,31 +50,10 @@ jobs: | |
continue-on-error: true | ||
- name: Upload coverage to Codecov | ||
if: success() | ||
uses: codecov/codecov-action@v3 | ||
uses: codecov/codecov-action@v5 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: coverage.xml | ||
flags: unittests | ||
name: codecov-umbrella | ||
continue-on-error: true | ||
- name: OSSF Scorecard action | ||
uses: ossf/[email protected] | ||
with: | ||
results_file: scoreboard-results.json | ||
results_format: json | ||
#publish_results: true | ||
continue-on-error: true | ||
- name: List files to verify scoreboard-results.json | ||
run: | | ||
ls -la scoreboard-results.json | ||
cat scoreboard-results.json | ||
continue-on-error: true | ||
- name: Upload Scorecard Results to Security Scorecards API | ||
if: always() | ||
run: | | ||
curl -X POST \ | ||
"" \ | ||
-H "Authorization: Bearer ${{ secrets.SCORECARD_TOKEN }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d @scoreboard-results.json | ||
continue-on-error: true |
This file was deleted.
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
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 |
---|---|---|
|
@@ -132,3 +132,6 @@ $RECYCLE.BIN/ | |
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
input | ||
output |
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 was deleted.
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 +1 @@ | ||
template.bridgefusion.icu | ||
langding.bridgefusion.icu |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from src import main | ||
|
||
main.main() |
Oops, something went wrong.