-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve issues on workflows #218
Conversation
extends: ['@commitlint/config-conventional'], rules: { // Here you can add custom rules or override the default ones 'type-enum': [ 2, 'always', [ 'feat', // new feature 'fix', // bug fix 'docs', // documentation only changes 'style', // formatting, missing semi colons, etc; no code change 'refactor', // refactoring production code 'test', // adding tests, refactoring test; no production code change 'chore', // updating grunt tasks etc; no production code change ] ], // You can also specify the scopes you use 'scope-enum': [ 2, 'always', [ 'auth', // authentication related changes 'api', // API related changes 'models', // database models changes 'views', // frontend views changes 'utils', // utility functions and helpers // Add more scopes here ] ], // Other rules... } }; ml
Merging to
|
Dependency ReviewThe following issues were found:
|
|
||
- name: Install Hatch | ||
run: pip install --upgrade hatch | ||
|
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
|
||
- name: Install Hatch | ||
run: pip install --upgrade hatch | ||
|
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
|
||
- name: Install Hatch | ||
run: pip install --upgrade hatch | ||
|
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Solved
|
||
- name: Install Hatch | ||
run: pip install --upgrade hatch | ||
|
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
|
||
- name: Install Hatch | ||
run: pip install --upgrade hatch | ||
|
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
Here are some friendly prose warnings from
|
🦙 MegaLinter status: ❌ ERROR
See detailed report in MegaLinter reports You could have the same capabilities but better runtime performances if you use a MegaLinter flavor:
|
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All OK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alles,OK
Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly. |
run: pip install --upgrade hatch | ||
- name: 🧰 Install Requirements | ||
run: | | ||
pip install --constraint=.github/workflows/constraints.txt pip |
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 |
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
- uses: actions/checkout@v4 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v4 |
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
run: npm test | ||
|
||
- name: Upload Jest Test Results | ||
uses: trunk-io/analytics-uploader@main |
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
1 similar comment
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
@@ -124,7 +126,8 @@ | |||
|
|||
def main() -> int: # no cov | |||
"""Entry point for the module.""" | |||
return checkconnect(sys.argv[1:]) | |||
checkconnect(sys.argv[1:]) |
Check warning
Code scanning / Prospector (reported by Codacy)
No value for argument 'url_data' in function call (no-value-for-parameter) Warning
@@ -124,7 +126,8 @@ | |||
|
|||
def main() -> int: # no cov | |||
"""Entry point for the module.""" | |||
return checkconnect(sys.argv[1:]) | |||
checkconnect(sys.argv[1:]) |
Check warning
Code scanning / Prospector (reported by Codacy)
No value for argument 'pdf_output' in function call (no-value-for-parameter) Warning
@@ -17,5 +13,5 @@ | |||
__version_tuple__: VERSION_TUPLE | |||
version_tuple: VERSION_TUPLE | |||
|
|||
__version__ = version = "0.0.1.dev69" | |||
__version_tuple__ = version_tuple = (0, 0, 1, "dev69") | |||
__version__ = version = "0.1.0.dev183" |
Check warning
Code scanning / Pylintpython3 (reported by Codacy)
Constant name "version" doesn't conform to UPPER_CASE naming style Warning
@@ -124,7 +126,8 @@ | |||
|
|||
def main() -> int: # no cov | |||
"""Entry point for the module.""" | |||
return checkconnect(sys.argv[1:]) | |||
checkconnect(sys.argv[1:]) |
Check warning
Code scanning / Pylintpython3 (reported by Codacy)
No value for argument 'url_data' in function call Warning
@@ -124,7 +126,8 @@ | |||
|
|||
def main() -> int: # no cov | |||
"""Entry point for the module.""" | |||
return checkconnect(sys.argv[1:]) | |||
checkconnect(sys.argv[1:]) |
Check warning
Code scanning / Pylintpython3 (reported by Codacy)
No value for argument 'pdf_output' in function call Warning
run: npm test | ||
|
||
- name: Upload Jest Test Results | ||
uses: trunk-io/analytics-uploader@main |
Check warning
Code scanning / Semgrep (reported by Codacy)
An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release. Warning
@@ -2,7 +2,7 @@ | |||
padding-left: 20px; | |||
margin-bottom: 30px; | |||
border-left: 5px solid; | |||
border-left-color: rgb(230, 230, 230); | |||
border-left-color: rgb(230 230 230); |
Check notice
Code scanning / Csslint (reported by Codacy)
Expected () but found 'rgb(230 230 230)'. Note documentation
@@ -17,5 +13,5 @@ | |||
__version_tuple__: VERSION_TUPLE | |||
version_tuple: VERSION_TUPLE | |||
|
|||
__version__ = version = "0.0.1.dev69" | |||
__version_tuple__ = version_tuple = (0, 0, 1, "dev69") | |||
__version__ = version = "0.1.0.dev183" |
Check warning
Code scanning / Pylint (reported by Codacy)
Constant name "version" doesn't conform to UPPER_CASE naming style Warning
__version__ = version = "0.0.1.dev69" | ||
__version_tuple__ = version_tuple = (0, 0, 1, "dev69") | ||
__version__ = version = "0.1.0.dev183" | ||
__version_tuple__ = version_tuple = (0, 1, 0, "dev183") |
Check warning
Code scanning / Pylint (reported by Codacy)
Constant name "version_tuple" doesn't conform to UPPER_CASE naming style Warning
@@ -124,7 +126,8 @@ | |||
|
|||
def main() -> int: # no cov | |||
"""Entry point for the module.""" | |||
return checkconnect(sys.argv[1:]) | |||
checkconnect(sys.argv[1:]) |
Check warning
Code scanning / Pylint (reported by Codacy)
No value for argument 'url_data' in function call Warning
@@ -124,7 +126,8 @@ | |||
|
|||
def main() -> int: # no cov | |||
"""Entry point for the module.""" | |||
return checkconnect(sys.argv[1:]) | |||
checkconnect(sys.argv[1:]) |
Check warning
Code scanning / Pylint (reported by Codacy)
No value for argument 'pdf_output' in function call Warning
@@ -40,7 +40,9 @@ | |||
""" | |||
assert self.settings.get("app_name") == "app-name" | |||
|
|||
def test_get_default_value_when_setting_not_found_with_success(self) -> None: | |||
def test_get_default_value_when_setting_not_found_with_success( | |||
self, |
Check warning
Code scanning / Pylint (reported by Codacy)
Wrong hanging indentation before block (add 4 spaces). Warning test
| | | | ||
| CI/CD | [![CI - Build CheckConnect][ci-cd-badge]][ci-cd-wf-url] | | ||
| Documentation | [![docs][docs-badge]][docs-wf-url] | | ||
| Package | [![PyPI - Version][pypi-version-badge]][pypi-version-url] \[!\[PyPI - Downloads\] [pypi-downloads-badge]\][pypi-downloads-URL] [![PyPI - Python Version][python-version-badge]][python-version-url] | |
Check warning
Code scanning / Remark-lint (reported by Codacy)
Warn when shortcut reference links are used. Warning
| Documentation | [![docs][docs-badge]][docs-wf-url] | | ||
| Package | [![PyPI - Version][pypi-version-badge]][pypi-version-url] \[!\[PyPI - Downloads\] [pypi-downloads-badge]\][pypi-downloads-URL] [![PyPI - Python Version][python-version-badge]][python-version-url] | | ||
| Meta | [![linting - Ruff][ruff-badge]][ruff-url] [![types - Mypy][mypy-badge]][mypy-url] [![GitHub license][github_license_badge]][license] | | ||
| Dependencies | \[!\[Dependabot auto-merge\] [dependabot_merge_action_badge]\][depandabot_merge_action] \[!\[Dependency Review\] [dependency_review_action_badge]\][dependency_review_action] | |
Check warning
Code scanning / Remark-lint (reported by Codacy)
Warn when shortcut reference links are used. Warning
1. Fork the repository and create a new branch | ||
1. Make your changes | ||
1. Check for existing related issues. | ||
1. Fork the repository and create a new branch. |
Check warning
Code scanning / Remark-lint (reported by Codacy)
Warn when the list item marker values of ordered lists violate a given Warning documentation
1. Make your changes | ||
1. Check for existing related issues. | ||
1. Fork the repository and create a new branch. | ||
1. Make your changes. |
Check warning
Code scanning / Remark-lint (reported by Codacy)
Warn when the list item marker values of ordered lists violate a given Warning documentation
"eslint.experimental.useFlatConfig": true, | ||
"eslint.options": { | ||
"overrideConfigFile": "./.config/eslint.config.js", | ||
}, |
Check warning
Code scanning / Jacksonlinter (reported by Codacy)
Unexpected character ('}' (code 125)): was expecting double-quote to start field name Warning
"group": { | ||
"kind": "test", | ||
"isDefault": true, | ||
}, |
Check warning
Code scanning / Jacksonlinter (reported by Codacy)
Unexpected character ('}' (code 125)): was expecting double-quote to start field name Warning
| Package | [![PyPI - Version][pypi-version-badge]][pypi-version-url] [![PyPI - Downloads] [pypi-downloads-badge]][pypi-downloads-url] [![PyPI - Python Version][python-version-badge]][python-version-url] | | ||
| Meta | [![linting - Ruff][ruff-badge]][ruff-url] [![types - Mypy][mypy-badge]][mypy-url] [![GitHub license][github_license_badge]][license] | | ||
| Dependencies | [![Dependabot auto-merge] [dependabot_merge_action_badge]][depandabot_merge_action] [![Dependency Review] [dependency_review_action_badge]][dependency_review_action] | | ||
| | | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
| Dependencies | [![Dependabot auto-merge] [dependabot_merge_action_badge]][depandabot_merge_action] [![Dependency Review] [dependency_review_action_badge]][dependency_review_action] | | ||
| | | | ||
|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| | | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
| | | | ||
|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| | | | ||
| CI/CD | [![CI - Build CheckConnect][ci-cd-badge]][ci-cd-wf-url] | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| | | | ||
| CI/CD | [![CI - Build CheckConnect][ci-cd-badge]][ci-cd-wf-url] | | ||
| Documentation | [![docs][docs-badge]][docs-wf-url] | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
| | | | ||
| CI/CD | [![CI - Build CheckConnect][ci-cd-badge]][ci-cd-wf-url] | | ||
| Documentation | [![docs][docs-badge]][docs-wf-url] | | ||
| Package | [![PyPI - Version][pypi-version-badge]][pypi-version-url] \[!\[PyPI - Downloads\] [pypi-downloads-badge]\][pypi-downloads-URL] [![PyPI - Python Version][python-version-badge]][python-version-url] | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
| CI/CD | [![CI - Build CheckConnect][ci-cd-badge]][ci-cd-wf-url] | | ||
| Documentation | [![docs][docs-badge]][docs-wf-url] | | ||
| Package | [![PyPI - Version][pypi-version-badge]][pypi-version-url] \[!\[PyPI - Downloads\] [pypi-downloads-badge]\][pypi-downloads-URL] [![PyPI - Python Version][python-version-badge]][python-version-url] | | ||
| Meta | [![linting - Ruff][ruff-badge]][ruff-url] [![types - Mypy][mypy-badge]][mypy-url] [![GitHub license][github_license_badge]][license] | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
| Documentation | [![docs][docs-badge]][docs-wf-url] | | ||
| Package | [![PyPI - Version][pypi-version-badge]][pypi-version-url] \[!\[PyPI - Downloads\] [pypi-downloads-badge]\][pypi-downloads-URL] [![PyPI - Python Version][python-version-badge]][python-version-url] | | ||
| Meta | [![linting - Ruff][ruff-badge]][ruff-url] [![types - Mypy][mypy-badge]][mypy-url] [![GitHub license][github_license_badge]][license] | | ||
| Dependencies | \[!\[Dependabot auto-merge\] [dependabot_merge_action_badge]\][depandabot_merge_action] \[!\[Dependency Review\] [dependency_review_action_badge]\][dependency_review_action] | |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 215 Warning
notice immediately following the copyright notice for the Work: | ||
Licensed under the EUPL | ||
or has expressed by any other means his willingness to license under the EUPL. | ||
_EUPL © the European Union 2007, 2016_ |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Emphasis used instead of a heading Warning documentation library
Description
Not all issues on workflow cleaned.
Related Issues / Pull Requests
Motivation and Context
How Has This Been Tested?
Screenshots (if appropriate)
Checklist
old
attribute is updated orit is resolved in SettingsUpdater.
documentation.
CHANGELOG.md.
Additional text