├── CONTRIBUTING.md ├── test_package ├── main.py ├── test_main.py ├── setup.py └── coverage.svg ├── .github ├── dependabot.yml └── workflows │ ├── update-readme.yml │ ├── sync-release-version.yml │ ├── test.yml │ └── codacy-analysis.yml ├── .whitesource ├── .all-contributorsrc ├── coverage.svg ├── action.yml ├── LICENSE ├── .gitignore ├── CODE_OF_CONDUCT.md ├── README.md └── HISTORY.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_package/main.py: -------------------------------------------------------------------------------- 1 | def main(): 2 | return 2 + 2 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: github-actions 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | -------------------------------------------------------------------------------- /test_package/test_main.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | from main import main 3 | 4 | class TestMain(unittest.TestCase): 5 | def test_main(self): 6 | self.assertEqual(main(), 4) 7 | -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "scanSettings": { 3 | "baseBranches": [] 4 | }, 5 | "checkRunSettings": { 6 | "vulnerableCheckRunConclusionLevel": "failure", 7 | "displayMode": "diff" 8 | }, 9 | "issueSettings": { 10 | "minSeverityLevel": "LOW" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test_package/setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | 3 | 4 | setup( 5 | name="test_package", 6 | version="0.0.1", 7 | author="Tonye Jack", 8 | author_email="jtonye@ymail.com", 9 | install_requires=[], 10 | packages=find_packages(), 11 | ) 12 | -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "commitType": "docs", 8 | "commitConvention": "angular", 9 | "contributors": [ 10 | { 11 | "login": "boidolr", 12 | "name": "Raphael Boidol", 13 | "avatar_url": "https://avatars.githubusercontent.com/u/652404?v=4", 14 | "profile": "https://home.boidol.dev/", 15 | "contributions": [ 16 | "doc" 17 | ] 18 | } 19 | ], 20 | "contributorsPerLine": 7, 21 | "skipCi": true, 22 | "repoType": "github", 23 | "repoHost": "https://github.com", 24 | "projectName": "coverage-badge-py", 25 | "projectOwner": "tj-actions" 26 | } 27 | -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | coverage 17 | coverage 18 | 84% 19 | 84% 20 | 21 | 22 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: coverage.py badge 2 | description: Generate a coverage.py badge 3 | author: tj-actions 4 | inputs: 5 | output: 6 | description: 'Output path to write the coverage badge.' 7 | required: false 8 | default: 'coverage.svg' 9 | overwrite: 10 | description: 'Overwrite an existing coverage badge.' 11 | required: false 12 | default: 'true' 13 | working-directory: 14 | description: 'Current working directory' 15 | required: false 16 | default: '.' 17 | 18 | runs: 19 | using: 'composite' 20 | steps: 21 | - id: coverage-badge 22 | working-directory: ${{ inputs.working-directory }} 23 | run: | 24 | pip install -U setuptools coverage-badge 25 | EXTRA_ARGS="" 26 | 27 | if [[ '${{ inputs.overwrite }}' == 'true' ]]; then 28 | EXTRA_ARGS+="-f" 29 | fi 30 | 31 | coverage-badge $EXTRA_ARGS -o "${{ inputs.output }}" 32 | shell: bash 33 | branding: 34 | icon: check-circle 35 | color: white 36 | -------------------------------------------------------------------------------- /test_package/coverage.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | coverage 17 | coverage 18 | 100% 19 | 100% 20 | 21 | 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021, Tonye Jack 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- 1 | name: Format README.md 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | permissions: 9 | contents: write 10 | pull-requests: write 11 | 12 | jobs: 13 | sync-assets: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4 17 | with: 18 | fetch-depth: 0 19 | 20 | - name: Run auto-doc 21 | uses: tj-actions/auto-doc@v3 22 | with: 23 | use_code_blocks: true 24 | use_major_version: true 25 | use_tag_commit_hash: true 26 | 27 | - name: Run remark 28 | uses: tj-actions/remark@v3 29 | 30 | - name: Verify Changed files 31 | uses: tj-actions/verify-changed-files@v20 32 | id: verify_changed_files 33 | with: 34 | files: | 35 | README.md 36 | 37 | - name: README.md changed 38 | if: steps.verify_changed_files.outputs.files_changed == 'true' 39 | run: | 40 | echo "README.md has uncommitted changes" 41 | exit 1 42 | 43 | - name: Create Pull Request 44 | if: failure() 45 | uses: peter-evans/create-pull-request@v7 46 | with: 47 | base: "main" 48 | labels: "merge when passing" 49 | title: "Updated README.md" 50 | branch: "chore/update-readme" 51 | commit-message: "Updated README.md" 52 | body: "Updated README.md" 53 | sign-commits: true 54 | token: ${{ secrets.GITHUB_TOKEN }} 55 | -------------------------------------------------------------------------------- /.github/workflows/sync-release-version.yml: -------------------------------------------------------------------------------- 1 | name: Update release version. 2 | 3 | permissions: 4 | contents: write 5 | pull-requests: write 6 | 7 | on: 8 | release: 9 | types: [published] 10 | 11 | 12 | jobs: 13 | update-version: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 17 | with: 18 | fetch-depth: 0 19 | - name: Run release-tagger 20 | uses: tj-actions/release-tagger@1a9264b0fd99a1ef92c4fd2f077f292900cc79b6 # v4.0.0 21 | - name: Sync release version. 22 | uses: tj-actions/sync-release-version@2a7ef0deb39b3ecce887ee99d2261c6cef989d84 # v13.16 23 | id: sync-release-version 24 | with: 25 | pattern: '${{ github.repository }}@' 26 | only_major: true 27 | use_tag_commit_hash: true 28 | paths: | 29 | README.md 30 | - name: Run git-cliff 31 | uses: tj-actions/git-cliff@75599f745633e29f99bd9e14a30865b7d2fcbe84 # v1.5.0 32 | - name: Create Pull Request 33 | uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 34 | with: 35 | base: "main" 36 | labels: "merge when passing" 37 | sign-commits: true 38 | title: "Upgraded to ${{ steps.sync-release-version.outputs.new_version }}" 39 | branch: "upgrade-to-${{ steps.sync-release-version.outputs.new_version }}" 40 | commit-message: "Upgraded from ${{ steps.sync-release-version.outputs.old_version }} -> ${{ steps.sync-release-version.outputs.new_version }}" 41 | body: "View [CHANGES](https://github.com/${{ github.repository }}/compare/${{ steps.sync-release-version.outputs.old_version }}...${{ steps.sync-release-version.outputs.new_version }})" 42 | token: ${{ secrets.GITHUB_TOKEN }} 43 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | test: 13 | name: Test coverage-badge-py 14 | runs-on: ${{ matrix.platform }} 15 | strategy: 16 | fail-fast: false 17 | matrix: 18 | platform: [ubuntu-latest, windows-latest, macos-latest] 19 | steps: 20 | - name: Checkout 21 | uses: actions/checkout@v4 22 | with: 23 | persist-credentials: false 24 | fetch-depth: 0 25 | 26 | - uses: actions/setup-python@v5 27 | with: 28 | python-version: '3.13' 29 | 30 | - name: Install dependencies 31 | run: | 32 | pip install --upgrade pip setuptools 33 | pip install coverage 34 | 35 | - name: Run coverage 36 | working-directory: test_package 37 | run: | 38 | coverage run -m unittest discover 39 | coverage report -m 40 | 41 | - name: Run coverage-badge-py 42 | uses: ./ 43 | with: 44 | working-directory: test_package 45 | 46 | - name: Verify Changed files 47 | uses: tj-actions/verify-changed-files@v20 48 | id: verify-changed-files 49 | with: 50 | files: test_package/coverage.svg 51 | 52 | - name: Commit README changes 53 | if: steps.verify-changed-files.outputs.files_changed == 'true' 54 | run: | 55 | git config --local user.email "github-actions[bot]@users.noreply.github.com" 56 | git config --local user.name "github-actions[bot]" 57 | git add ${{ steps.verify-changed-files.outputs.changed_files }} 58 | git commit -m "chore: update coverage badge." 59 | 60 | - name: Push changes 61 | if: steps.verify-changed-files.outputs.files_changed == 'true' 62 | uses: ad-m/github-push-action@master 63 | continue-on-error: true 64 | with: 65 | github_token: ${{ secrets.PAT_TOKEN }} 66 | branch: ${{ github.head_ref }} 67 | -------------------------------------------------------------------------------- /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- 1 | # This workflow checks out code, performs a Codacy security scan 2 | # and integrates the results with the 3 | # GitHub Advanced Security code scanning feature. For more information on 4 | # the Codacy security scan action usage and parameters, see 5 | # https://github.com/codacy/codacy-analysis-cli-action. 6 | # For more information on Codacy Analysis CLI in general, see 7 | # https://github.com/codacy/codacy-analysis-cli. 8 | 9 | name: Codacy Security Scan 10 | 11 | on: 12 | push: 13 | branches: [ main ] 14 | pull_request: 15 | # The branches below must be a subset of the branches above 16 | branches: [ main ] 17 | schedule: 18 | - cron: '15 16 * * 2' 19 | 20 | jobs: 21 | codacy-security-scan: 22 | # Cancel other workflows that are running for the same branch 23 | # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency 24 | concurrency: 25 | group: ${{ github.workflow }}-${{ github.ref }} 26 | cancel-in-progress: true 27 | name: Codacy Security Scan 28 | runs-on: ubuntu-latest 29 | steps: 30 | # Checkout the repository to the GitHub Actions runner 31 | - name: Checkout code 32 | uses: actions/checkout@v4 33 | 34 | # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis 35 | - name: Run Codacy Analysis CLI 36 | continue-on-error: true 37 | uses: codacy/codacy-analysis-cli-action@v4.4.5 38 | with: 39 | # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository 40 | # You can also omit the token and run the tools that support default configurations 41 | project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} 42 | verbose: true 43 | output: results.sarif 44 | format: sarif 45 | # Adjust severity of non-security issues 46 | gh-code-scanning-compat: true 47 | # Force 0 exit code to allow SARIF file generation 48 | # This will hand over control about PR rejection to the GitHub side 49 | max-allowed-issues: 2147483647 50 | 51 | # Upload the SARIF file generated in the previous step 52 | - name: Upload SARIF results file 53 | continue-on-error: true 54 | uses: github/codeql-action/upload-sarif@v3 55 | with: 56 | sarif_file: results.sarif 57 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | .envrc 131 | 132 | # Spyder project settings 133 | .spyderproject 134 | .spyproject 135 | 136 | # Rope project settings 137 | .ropeproject 138 | 139 | # mkdocs documentation 140 | /site 141 | 142 | # mypy 143 | .mypy_cache/ 144 | .dmypy.json 145 | dmypy.json 146 | 147 | # Pyre type checker 148 | .pyre/ 149 | 150 | # pytype static type analyzer 151 | .pytype/ 152 | 153 | # Cython debug symbols 154 | cython_debug/ 155 | 156 | # PyCharm 157 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 158 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 159 | # and can be added to the global gitignore or merged into this file. For a more nuclear 160 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 161 | .idea/ 162 | .DS_Store 163 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | jtonye@ymail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Ubuntu](https://img.shields.io/badge/Ubuntu-E95420?style=for-the-badge\&logo=ubuntu\&logoColor=white)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 2 | [![Mac OS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge\&logo=macos\&logoColor=F0F0F0)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 3 | [![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge\&logo=windows\&logoColor=white)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 4 | [![Public workflows that use this action.](https://img.shields.io/endpoint?style=for-the-badge\&url=https%3A%2F%2Fused-by.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3Dtj-actions%2Fcoverage-badge-py%26badge%3Dtrue)](https://github.com/search?o=desc\&q=tj-actions+coverage-badge-py+path%3A.github%2Fworkflows+language%3AYAML\&s=\&type=Code) 5 | 6 | [![Codacy Badge](https://app.codacy.com/project/badge/Grade/86bb91ca02aa430e9a84233fc2f4333a)](https://app.codacy.com/gh/tj-actions/coverage-badge-py/dashboard?utm_source=gh\&utm_medium=referral\&utm_content=\&utm_campaign=Badge_grade) 7 | [![CI](https://github.com/tj-actions/coverage-badge-py/actions/workflows/test.yml/badge.svg)](https://github.com/tj-actions/coverage-badge-py/actions/workflows/test.yml) 8 | [![Update release version.](https://github.com/tj-actions/coverage-badge-py/actions/workflows/sync-release-version.yml/badge.svg)](https://github.com/tj-actions/coverage-badge-py/actions/workflows/sync-release-version.yml) 9 | 10 | 11 | 12 | [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) 13 | 14 | 15 | 16 | ## coverage-badge-py 17 | 18 | Generate coverage.py badge like this ![coverage badge](./coverage.svg) without uploading results to a 3rd party site. 19 | 20 | ## Usage: 21 | 22 | ```yaml 23 | ... 24 | steps: 25 | - uses: actions/checkout@v4 26 | - name: Coverage Badge 27 | uses: tj-actions/coverage-badge-py@v2 28 | ``` 29 | 30 | > \[!Warning] 31 | > 32 | > * It's important that you run this action from the directory where the .coverage data file is located. 33 | 34 | If you feel generous and want to show some extra appreciation: 35 | 36 | Support this project with a :star: 37 | 38 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 39 | 40 | [buymeacoffee]: https://www.buymeacoffee.com/jackton1 41 | 42 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png 43 | 44 | ## Inputs 45 | 46 | 47 | 48 | ```yaml 49 | - uses: tj-actions/coverage-badge-py@1788babcb24544eb5bbb6e0d374df5d1e54e670f # v2 50 | id: coverage-badge-py 51 | with: 52 | # Output path to write the 53 | # coverage badge. 54 | # Type: string 55 | # Default: "coverage.svg" 56 | output: '' 57 | 58 | # Overwrite an existing coverage badge. 59 | # Type: boolean 60 | # Default: "true" 61 | overwrite: '' 62 | 63 | # Current working directory 64 | # Type: string 65 | # Default: "." 66 | working-directory: '' 67 | 68 | ``` 69 | 70 | 71 | 72 | ### Example 73 | 74 | ```yml 75 | ... 76 | steps: 77 | - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4 78 | 79 | - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 80 | with: 81 | python-version: 3.13 82 | 83 | - name: Install dependencies 84 | ... 85 | 86 | - name: Run coverage 87 | run: | 88 | coverage run ... 89 | coverage report -m 90 | 91 | - name: Coverage Badge 92 | uses: tj-actions/coverage-badge-py@1788babcb24544eb5bbb6e0d374df5d1e54e670f # v2 93 | 94 | - name: Verify Changed files 95 | uses: tj-actions/verify-changed-files@a1c6acee9df209257a246f2cc6ae8cb6581c1edf # v20 96 | id: verify-changed-files 97 | with: 98 | files: coverage.svg 99 | 100 | - name: Commit files 101 | if: steps.verify-changed-files.outputs.files_changed == 'true' 102 | run: | 103 | git config --local user.email "github-actions[bot]@users.noreply.github.com" 104 | git config --local user.name "github-actions[bot]" 105 | git add coverage.svg 106 | git commit -m "Updated coverage.svg" 107 | 108 | - name: Push changes 109 | if: steps.verify-changed-files.outputs.files_changed == 'true' 110 | uses: ad-m/github-push-action@master 111 | with: 112 | github_token: ${{ secrets.github_token }} 113 | branch: ${{ github.ref }} 114 | ``` 115 | 116 | * Free software: [MIT license](LICENSE) 117 | 118 | ## Credits 119 | 120 | This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter). 121 | 122 | * [coverage-badge](https://github.com/dbrgn/coverage-badge) 123 | 124 | ## Report Bugs 125 | 126 | Report bugs at https://github.com/tj-actions/coverage-badge-py/issues. 127 | 128 | If you are reporting a bug, please include: 129 | 130 | * Your operating system name and version. 131 | * Any details about your workflow that might be helpful in troubleshooting. 132 | * Detailed steps to reproduce the bug. 133 | 134 | ## Contributors ✨ 135 | 136 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 |
Raphael Boidol
Raphael Boidol

📖
151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 159 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | # [2.0.4](https://github.com/tj-actions/coverage-badge-py/compare/v2.0.3...v2.0.4) - (2025-06-15) 4 | 5 | ## 🐛 Bug Fixes 6 | 7 | - Installation error ([#174](https://github.com/tj-actions/coverage-badge-py/issues/174)) ([b2a3c98](https://github.com/tj-actions/coverage-badge-py/commit/b2a3c98908860e850dbc7d05b8f96da0b0d7938e)) - (Tonye Jack) 8 | - Test ([#173](https://github.com/tj-actions/coverage-badge-py/issues/173)) ([caa7063](https://github.com/tj-actions/coverage-badge-py/commit/caa70634c71d13510cd5410896590bb1fc7c8561)) - (Tonye Jack) 9 | 10 | ## ➖ Remove 11 | 12 | - Deleted .github/workflows/rebase.yml ([5ad5dcc](https://github.com/tj-actions/coverage-badge-py/commit/5ad5dcc85be2cca63dc43d933ca2144b40487dac)) - (Tonye Jack) 13 | - Deleted renovate.json ([652c472](https://github.com/tj-actions/coverage-badge-py/commit/652c472000547f93225981bb2eb91790682a6363)) - (Tonye Jack) 14 | - Deleted .github/workflows/auto-approve.yml ([349755f](https://github.com/tj-actions/coverage-badge-py/commit/349755f0acadc5935842aeb8d1c2fbeba9a34f54)) - (Tonye Jack) 15 | - Deleted .github/workflows/greetings.yml ([adc7ddb](https://github.com/tj-actions/coverage-badge-py/commit/adc7ddb710111808e9d909b1b2c1e731e52f4c6e)) - (Tonye Jack) 16 | - Deleted .github/FUNDING.yml ([c19a0e1](https://github.com/tj-actions/coverage-badge-py/commit/c19a0e11399c7c0202582d1395a407e07872c940)) - (Tonye Jack) 17 | - Delete .github/ISSUE_TEMPLATE directory ([0cfb715](https://github.com/tj-actions/coverage-badge-py/commit/0cfb7159076d432491e3fbb8a920b626f6883f6b)) - (Tonye Jack) 18 | - Deleted .github/workflows/auto-merge.yml ([62f215a](https://github.com/tj-actions/coverage-badge-py/commit/62f215a1a56ddbaf2a051d16366b480c744f7f99)) - (Tonye Jack) 19 | 20 | ## 🔄 Update 21 | 22 | - Updated README.md 23 | ([7de25b3](https://github.com/tj-actions/coverage-badge-py/commit/7de25b34f5458b3dcb67ee1f2c9597ed98953dff)) - (jackton1) 24 | - Update README.md ([b2b0398](https://github.com/tj-actions/coverage-badge-py/commit/b2b039895a9c884d88bd8e7fa3caf6f5c35d56a8)) - (Tonye Jack) 25 | - Updated README.md 26 | ([12ae594](https://github.com/tj-actions/coverage-badge-py/commit/12ae594ea87853940a2cfa9e476471f99c54551f)) - (repo-ranger[bot]) 27 | - Updated README.md 28 | ([3fd75ad](https://github.com/tj-actions/coverage-badge-py/commit/3fd75ade40da882032c6f730c678bdfd56caf223)) - (jackton1) 29 | - Update README.md ([1ccc6df](https://github.com/tj-actions/coverage-badge-py/commit/1ccc6df6ae84587712c59b5a4f7e1b84cd08a521)) - (Tonye Jack) 30 | - Updated README.md 31 | ([f10bc8c](https://github.com/tj-actions/coverage-badge-py/commit/f10bc8c3de2e8cdb70ca4435d4c9b924d8c82cbb)) - (jackton1) 32 | - Update README.md ([68e306d](https://github.com/tj-actions/coverage-badge-py/commit/68e306d0360fa0edcc18a8051fabb5bd480d772e)) - (Tonye Jack) 33 | - Updated README.md 34 | ([276e24a](https://github.com/tj-actions/coverage-badge-py/commit/276e24ac45fcfdc6c65442f9f3150ecc546d617e)) - (jackton1) 35 | - Update update-readme.yml ([7d282b4](https://github.com/tj-actions/coverage-badge-py/commit/7d282b43921e35ad995b7920619eae955cf61b3f)) - (Tonye Jack) 36 | - Updated README.md 37 | ([d2bfce6](https://github.com/tj-actions/coverage-badge-py/commit/d2bfce642f433d729bf6608cd8629084aed2a680)) - (repo-ranger[bot]) 38 | - Updated .github/FUNDING.yml ([00fab9b](https://github.com/tj-actions/coverage-badge-py/commit/00fab9b535e6aa2bcf2a549cb42196225c955cd8)) - (Tonye Jack) 39 | - Updated .github/FUNDING.yml ([5e5b032](https://github.com/tj-actions/coverage-badge-py/commit/5e5b0322fdcc961b1a9463d7239c3f882c3f80b0)) - (Tonye Jack) 40 | - Update README.md ([8849f87](https://github.com/tj-actions/coverage-badge-py/commit/8849f8747136916177df39b6bd81c9617194381c)) - (Tonye Jack) 41 | - Update README.md ([a6670cb](https://github.com/tj-actions/coverage-badge-py/commit/a6670cbc9245f0f3213f5ad06636fc00e41f57b9)) - (Tonye Jack) 42 | - Updated renovate.json ([0b60431](https://github.com/tj-actions/coverage-badge-py/commit/0b60431e2c1bb3a5c8fd7d84f2dd1eaaf75d7bab)) - (Tonye Jack) 43 | 44 | ## 📚 Documentation 45 | 46 | - Update checkout action ([#158](https://github.com/tj-actions/coverage-badge-py/issues/158)) ([aec860c](https://github.com/tj-actions/coverage-badge-py/commit/aec860c1e668b1f43f3b846f7794575719bae588)) - (Raphael Boidol) 47 | - Add boidolr as a contributor for doc ([#168](https://github.com/tj-actions/coverage-badge-py/issues/168)) ([fb59151](https://github.com/tj-actions/coverage-badge-py/commit/fb59151ebd9991b86460d0fdf14273302c68fa3d)) - (allcontributors[bot]) 48 | 49 | ## 📝 Other 50 | 51 | - PR [#169](https://github.com/tj-actions/coverage-badge-py/pull/169): README.md ([61af7d1](https://github.com/tj-actions/coverage-badge-py/commit/61af7d1a9f51bc946750bf5bf7c24eebcba03699)) - (repo-ranger[bot]) 52 | - PR [#167](https://github.com/tj-actions/coverage-badge-py/pull/167): update codacy/codacy-analysis-cli-action action to v4.4.1 ([4723eaa](https://github.com/tj-actions/coverage-badge-py/commit/4723eaacb786a87e7e1a16f93bc5771a3458cd67)) - (repo-ranger[bot]) 53 | - PR [#166](https://github.com/tj-actions/coverage-badge-py/pull/166): README.md ([47bafb5](https://github.com/tj-actions/coverage-badge-py/commit/47bafb52cc7829dee9c474cc696b594da4ca4ce5)) - (repo-ranger[bot]) 54 | - PR [#165](https://github.com/tj-actions/coverage-badge-py/pull/165): update tj-actions/verify-changed-files action to v20 ([467b81c](https://github.com/tj-actions/coverage-badge-py/commit/467b81cb21e18c5cb22ccd90ac58cceda8332c29)) - (repo-ranger[bot]) 55 | - PR [#164](https://github.com/tj-actions/coverage-badge-py/pull/164): update peter-evans/create-pull-request action to v6.0.5 ([a03b1ad](https://github.com/tj-actions/coverage-badge-py/commit/a03b1ada3d7c47e2abc91559093177250a04dae1)) - (repo-ranger[bot]) 56 | - PR [#162](https://github.com/tj-actions/coverage-badge-py/pull/162): update peter-evans/create-pull-request action to v6.0.4 ([c133eb4](https://github.com/tj-actions/coverage-badge-py/commit/c133eb408e4bc1c8cdc9be9a8d47ed545a1d24f9)) - (repo-ranger[bot]) 57 | - PR [#161](https://github.com/tj-actions/coverage-badge-py/pull/161): update peter-evans/create-pull-request action to v6.0.3 ([e553b0c](https://github.com/tj-actions/coverage-badge-py/commit/e553b0c02a546b92264680a6b27c2220774484b0)) - (repo-ranger[bot]) 58 | - PR [#159](https://github.com/tj-actions/coverage-badge-py/pull/159): update peter-evans/create-pull-request action to v6.0.2 ([c5dd33b](https://github.com/tj-actions/coverage-badge-py/commit/c5dd33b339f328abf0a5efa7a2c6d789d149dbbc)) - (repo-ranger[bot]) 59 | - PR [#157](https://github.com/tj-actions/coverage-badge-py/pull/157): update tj-actions/verify-changed-files action to v19 ([9deb249](https://github.com/tj-actions/coverage-badge-py/commit/9deb2498dcf1ee15b7e74632364dec597299a8b0)) - (repo-ranger[bot]) 60 | - PR [#156](https://github.com/tj-actions/coverage-badge-py/pull/156): update peter-evans/create-pull-request action to v6.0.1 ([8b9f576](https://github.com/tj-actions/coverage-badge-py/commit/8b9f576bccacf287963887d621bcbb4578caadcb)) - (repo-ranger[bot]) 61 | - PR [#155](https://github.com/tj-actions/coverage-badge-py/pull/155): README.md ([df713d7](https://github.com/tj-actions/coverage-badge-py/commit/df713d79e667f3fce0823cbd042ec94f7bf5fc5a)) - (repo-ranger[bot]) 62 | - PR [#154](https://github.com/tj-actions/coverage-badge-py/pull/154): update codacy/codacy-analysis-cli-action action to v4.4.0 ([722db77](https://github.com/tj-actions/coverage-badge-py/commit/722db7718d484547fa53796ca8583ff0c12a45aa)) - (repo-ranger[bot]) 63 | - PR [#153](https://github.com/tj-actions/coverage-badge-py/pull/153): update tj-actions/verify-changed-files action to v18 ([7c4adf8](https://github.com/tj-actions/coverage-badge-py/commit/7c4adf8e406f443f5412b032bd3ffe229416eec6)) - (repo-ranger[bot]) 64 | - PR [#152](https://github.com/tj-actions/coverage-badge-py/pull/152): README.md ([25bfeea](https://github.com/tj-actions/coverage-badge-py/commit/25bfeea6011082500b30e1817ee2e481f4f0965e)) - (repo-ranger[bot]) 65 | - PR [#151](https://github.com/tj-actions/coverage-badge-py/pull/151): update peter-evans/create-pull-request action to v6 ([4b67999](https://github.com/tj-actions/coverage-badge-py/commit/4b6799931b8b475be12c4ed40a19e2b9f97032d3)) - (repo-ranger[bot]) 66 | - PR [#150](https://github.com/tj-actions/coverage-badge-py/pull/150): update tj-actions/verify-changed-files action to v17 ([7816b87](https://github.com/tj-actions/coverage-badge-py/commit/7816b875a933228a85d392782b11acd2c147de5e)) - (repo-ranger[bot]) 67 | - PR [#149](https://github.com/tj-actions/coverage-badge-py/pull/149): update github/codeql-action action to v3 ([f58c12c](https://github.com/tj-actions/coverage-badge-py/commit/f58c12cb66d0036e905a3b834beb43e7ca97d88e)) - (repo-ranger[bot]) 68 | - PR [#147](https://github.com/tj-actions/coverage-badge-py/pull/147): update actions/setup-python action to v5 ([b32afb5](https://github.com/tj-actions/coverage-badge-py/commit/b32afb526f5c50b6faf2702056058edfa0701ed1)) - (repo-ranger[bot]) 69 | - PR [#146](https://github.com/tj-actions/coverage-badge-py/pull/146): README.md ([8dbad5c](https://github.com/tj-actions/coverage-badge-py/commit/8dbad5c7d0d12f40d4cf34c1f4581562373f41a8)) - (repo-ranger[bot]) 70 | - PR [#144](https://github.com/tj-actions/coverage-badge-py/pull/144): update actions/checkout action to v4 ([4ab14d7](https://github.com/tj-actions/coverage-badge-py/commit/4ab14d71905688f51cd983e5a924a2d6f80b9422)) - (repo-ranger[bot]) 71 | - PR [#143](https://github.com/tj-actions/coverage-badge-py/pull/143): update tj-actions/release-tagger action to v4 ([a95c957](https://github.com/tj-actions/coverage-badge-py/commit/a95c957d36f43fc03788974dcfacd6827a5671ff)) - (repo-ranger[bot]) 72 | - PR [#142](https://github.com/tj-actions/coverage-badge-py/pull/142): README.md ([108fa7d](https://github.com/tj-actions/coverage-badge-py/commit/108fa7d31addfa2669fc5632c6745b9abc56614e)) - (repo-ranger[bot]) 73 | - PR [#141](https://github.com/tj-actions/coverage-badge-py/pull/141): update tj-actions/auto-doc action to v3 ([c3e6d11](https://github.com/tj-actions/coverage-badge-py/commit/c3e6d11c5e5fa3e8a39431fc4b906036bf71165a)) - (repo-ranger[bot]) 74 | 75 | ## ⚙️ Miscellaneous Tasks 76 | 77 | - Update sync-release-version.yml ([#175](https://github.com/tj-actions/coverage-badge-py/issues/175)) ([1788bab](https://github.com/tj-actions/coverage-badge-py/commit/1788babcb24544eb5bbb6e0d374df5d1e54e670f)) - (Tonye Jack) 78 | - **deps:** Update codacy/codacy-analysis-cli-action action to v4.4.5 ([#171](https://github.com/tj-actions/coverage-badge-py/issues/171)) ([2820644](https://github.com/tj-actions/coverage-badge-py/commit/28206440274de951750ae4d69968cfdd7d9e43ba)) - (renovate[bot]) 79 | - **deps:** Update peter-evans/create-pull-request action to v7 ([#172](https://github.com/tj-actions/coverage-badge-py/issues/172)) ([8821941](https://github.com/tj-actions/coverage-badge-py/commit/882194103ff5d454869a5c0326f0d03a92b4325c)) - (renovate[bot]) 80 | - **deps:** Update peter-evans/create-pull-request action to v6.1.0 ([3750002](https://github.com/tj-actions/coverage-badge-py/commit/3750002fcf4fe6cb33fd4d1ba18a0f9b29f9ce9e)) - (renovate[bot]) 81 | - **deps:** Update codacy/codacy-analysis-cli-action action to v4.4.1 ([2a655a2](https://github.com/tj-actions/coverage-badge-py/commit/2a655a2b1a95afc4d76c3569108bbb76e0c10943)) - (renovate[bot]) 82 | - **deps:** Update tj-actions/verify-changed-files action to v20 ([2b706e7](https://github.com/tj-actions/coverage-badge-py/commit/2b706e7271cd687c4894b35add9fd196d46978a8)) - (renovate[bot]) 83 | - **deps:** Update peter-evans/create-pull-request action to v6.0.5 ([17e000a](https://github.com/tj-actions/coverage-badge-py/commit/17e000aea591697c31c482e060e723070dcf6691)) - (renovate[bot]) 84 | - **deps:** Update peter-evans/create-pull-request action to v6.0.4 ([191f27c](https://github.com/tj-actions/coverage-badge-py/commit/191f27cfa66e29659622c8304353e518a0402d28)) - (renovate[bot]) 85 | - **deps:** Update peter-evans/create-pull-request action to v6.0.3 ([a226836](https://github.com/tj-actions/coverage-badge-py/commit/a226836dc6366a5436b0809af7853c46838ac4e5)) - (renovate[bot]) 86 | - **deps:** Update peter-evans/create-pull-request action to v6.0.2 ([7477354](https://github.com/tj-actions/coverage-badge-py/commit/7477354da49c550d42b367ffd8779aabd9c7cb4e)) - (renovate[bot]) 87 | - **deps:** Update tj-actions/verify-changed-files action to v19 ([a17102a](https://github.com/tj-actions/coverage-badge-py/commit/a17102ae00a6aa46c2dab39dd926afd4b970f401)) - (renovate[bot]) 88 | - **deps:** Update peter-evans/create-pull-request action to v6.0.1 ([997df85](https://github.com/tj-actions/coverage-badge-py/commit/997df8578c843b5173867f4d1e7ad95c9ab11e98)) - (renovate[bot]) 89 | - **deps:** Update codacy/codacy-analysis-cli-action action to v4.4.0 ([db8a326](https://github.com/tj-actions/coverage-badge-py/commit/db8a326b856dca06324f0b3a5935c9e76019cde3)) - (renovate[bot]) 90 | - **deps:** Update tj-actions/verify-changed-files action to v18 ([4fc45c6](https://github.com/tj-actions/coverage-badge-py/commit/4fc45c6db09b480d327f7f22bc4586e9c4fea6df)) - (renovate[bot]) 91 | - **deps:** Update peter-evans/create-pull-request action to v6 ([bcd885f](https://github.com/tj-actions/coverage-badge-py/commit/bcd885fcc7d6da6fb9b36abacd61b5f4d9ef2169)) - (renovate[bot]) 92 | - **deps:** Update tj-actions/verify-changed-files action to v17 ([05b33c3](https://github.com/tj-actions/coverage-badge-py/commit/05b33c3a74ebda289a37dd4cd1b7efca70ec2d91)) - (renovate[bot]) 93 | - **deps:** Update github/codeql-action action to v3 ([625de83](https://github.com/tj-actions/coverage-badge-py/commit/625de83e756eed7649fa22418a51666ce9109b8c)) - (renovate[bot]) 94 | - **deps:** Update actions/setup-python action to v5 ([4db1f3b](https://github.com/tj-actions/coverage-badge-py/commit/4db1f3b2b071084fa6acb35c7b807f23e7e31bfd)) - (renovate[bot]) 95 | - **deps:** Update actions/checkout action to v4 ([0f3c732](https://github.com/tj-actions/coverage-badge-py/commit/0f3c732af1dedc532ce19279d89a3dfd0a8cd4d2)) - (renovate[bot]) 96 | - **deps:** Update tj-actions/release-tagger action to v4 ([b009c8d](https://github.com/tj-actions/coverage-badge-py/commit/b009c8d9ea480bb2704664cbd394042bccb20fa5)) - (renovate[bot]) 97 | - **deps:** Update tj-actions/auto-doc action to v3 ([1e957f5](https://github.com/tj-actions/coverage-badge-py/commit/1e957f5c46dafecc18f5a51232db8fd7ae34aa8e)) - (renovate[bot]) 98 | 99 | ## ⬆️ Upgrades 100 | 101 | - Upgraded to v2.0.3 ([#140](https://github.com/tj-actions/coverage-badge-py/issues/140)) 102 | 103 | Co-authored-by: jackton1 ([f88e004](https://github.com/tj-actions/coverage-badge-py/commit/f88e004a3b8d27e38f2f285897c0778dd4236b66)) - (tj-actions[bot]) 104 | 105 | # [2.0.3](https://github.com/tj-actions/coverage-badge-py/compare/v2.0.2...v2.0.3) - (2023-06-22) 106 | 107 | ## 🔄 Update 108 | 109 | - Updated README.md 110 | ([08b6b6b](https://github.com/tj-actions/coverage-badge-py/commit/08b6b6b612faaf900a93f13f8cb7346b4a9cd07b)) - (jackton1) 111 | - Update README.md ([e19506b](https://github.com/tj-actions/coverage-badge-py/commit/e19506b0c53b5ebe4b60f5122ed63a9d93cdf651)) - (Tonye Jack) 112 | - Update README.md ([3a001a6](https://github.com/tj-actions/coverage-badge-py/commit/3a001a6f6d72430d67e39f045b1c84f17c5abc06)) - (Tonye Jack) 113 | - Updated README.md 114 | ([cb4e832](https://github.com/tj-actions/coverage-badge-py/commit/cb4e832328e104d23c42eb7ca4fc65ca2384168d)) - (jackton1) 115 | - Update README.md ([775b620](https://github.com/tj-actions/coverage-badge-py/commit/775b6204c896150819349b81b1ff6200fde24294)) - (Tonye Jack) 116 | 117 | ## 📝 Other 118 | 119 | - PR [#136](https://github.com/tj-actions/coverage-badge-py/pull/136): README.md ([8f15a70](https://github.com/tj-actions/coverage-badge-py/commit/8f15a70335015a06608db4963281e10f47c31b1c)) - (repo-ranger[bot]) 120 | - PR [#135](https://github.com/tj-actions/coverage-badge-py/pull/135): README.md ([8196b73](https://github.com/tj-actions/coverage-badge-py/commit/8196b736c8685b87d057c31ec8f9730049c78f19)) - (repo-ranger[bot]) 121 | - PR [#133](https://github.com/tj-actions/coverage-badge-py/pull/133): to v2.0.2 ([2d0ff2e](https://github.com/tj-actions/coverage-badge-py/commit/2d0ff2e1ab533cc61667f95af71be45e1f6cf15c)) - (repo-ranger[bot]) 122 | 123 | ## ⚙️ Miscellaneous Tasks 124 | 125 | - **deps:** Update tj-actions/verify-changed-files action to v16 ([782bdaa](https://github.com/tj-actions/coverage-badge-py/commit/782bdaaa8b2e37612e6b6fac5e559e5544e6eef2)) - (renovate[bot]) 126 | - **deps:** Update peter-evans/create-pull-request action to v5.0.2 ([83c47ef](https://github.com/tj-actions/coverage-badge-py/commit/83c47efa8e96fb7a3fcea40c8d9d25306ed99d6a)) - (renovate[bot]) 127 | - **deps:** Update tj-actions/verify-changed-files action to v15 ([cdd877f](https://github.com/tj-actions/coverage-badge-py/commit/cdd877fd98bb2ab637eba8888fe793542e9b94c8)) - (renovate[bot]) 128 | - **deps:** Update peter-evans/create-pull-request action to v5.0.1 ([751d319](https://github.com/tj-actions/coverage-badge-py/commit/751d319efac308b66c2afb8adbf7b1084a0e04bb)) - (renovate[bot]) 129 | 130 | ## ⬆️ Upgrades 131 | 132 | - Upgraded from v2.0.1 -> v2.0.2 133 | ([d842eba](https://github.com/tj-actions/coverage-badge-py/commit/d842eba39726992d7b8c805ab142559c63eb74fe)) - (jackton1) 134 | 135 | # [2.0.2](https://github.com/tj-actions/coverage-badge-py/compare/v2.0.1...v2.0.2) - (2023-04-08) 136 | 137 | ## 🔄 Update 138 | 139 | - Updated README.md 140 | ([9e45930](https://github.com/tj-actions/coverage-badge-py/commit/9e459309026c2069d813199f45e54d38be4e9db8)) - (jackton1) 141 | - Update README.md ([9ba9590](https://github.com/tj-actions/coverage-badge-py/commit/9ba9590fb5185cc60d9f495622815897d7f8d2f1)) - (Tonye Jack) 142 | 143 | ## 📝 Other 144 | 145 | - PR [#132](https://github.com/tj-actions/coverage-badge-py/pull/132): switch to use tj-actions/git-cliff for generating changelogs ([06a3e86](https://github.com/tj-actions/coverage-badge-py/commit/06a3e86bbf45e022b0ce478073dc68119e457c45)) - (repo-ranger[bot]) 146 | - PR [#124](https://github.com/tj-actions/coverage-badge-py/pull/124): README.md ([0966e59](https://github.com/tj-actions/coverage-badge-py/commit/0966e5964585109b98a6a1a06f77766c19c30a55)) - (repo-ranger[bot]) 147 | - PR [#123](https://github.com/tj-actions/coverage-badge-py/pull/123): to v2.0.1 ([22b0289](https://github.com/tj-actions/coverage-badge-py/commit/22b02898135305ab02936c74c044d7df457e8650)) - (repo-ranger[bot]) 148 | 149 | ## ⚙️ Miscellaneous Tasks 150 | 151 | - Switch to use tj-actions/git-cliff for generating changelogs ([b3674a5](https://github.com/tj-actions/coverage-badge-py/commit/b3674a5967170941ad669191e31eddd303558f87)) - (Tonye Jack) 152 | - **deps:** Update peter-evans/create-pull-request action to v5 ([8fb80c1](https://github.com/tj-actions/coverage-badge-py/commit/8fb80c1f35168dbcc50e0381f0260f2427789466)) - (renovate[bot]) 153 | - **deps:** Update tj-actions/verify-changed-files action to v14 ([8ae8924](https://github.com/tj-actions/coverage-badge-py/commit/8ae89242419ef133d4fda9b95b4390dba85aa7a8)) - (renovate[bot]) 154 | - **deps:** Update peter-evans/create-pull-request action to v4.2.4 ([1c1cbf4](https://github.com/tj-actions/coverage-badge-py/commit/1c1cbf4e72780591195d9b4e5620dd7deaa87eb7)) - (renovate[bot]) 155 | - **deps:** Update tj-actions/release-tagger action to v3 ([09de1dd](https://github.com/tj-actions/coverage-badge-py/commit/09de1dd0d191b9aa6e30f5fe72feb99a0bb34c3e)) - (renovate[bot]) 156 | - **deps:** Update tj-actions/github-changelog-generator action to v1.18 ([c8047f0](https://github.com/tj-actions/coverage-badge-py/commit/c8047f0643435deae055ce3e2af37f0bd276ac75)) - (renovate[bot]) 157 | - **deps:** Update tj-actions/auto-doc action to v2 ([f82cf72](https://github.com/tj-actions/coverage-badge-py/commit/f82cf72eba723623a072c06f53e36c582bf789f6)) - (renovate[bot]) 158 | - **deps:** Update codacy/codacy-analysis-cli-action action to v4.3.0 ([2922b6d](https://github.com/tj-actions/coverage-badge-py/commit/2922b6d2ebcd937caf84ba89bc857f501710496a)) - (renovate[bot]) 159 | 160 | ## ⬆️ Upgrades 161 | 162 | - Upgraded from v2.0.0 -> v2.0.1 163 | ([7be2e67](https://github.com/tj-actions/coverage-badge-py/commit/7be2e67c79e9d4e9676cfcf8f1b0dcec46caeb72)) - (jackton1) 164 | 165 | # [2.0.1](https://github.com/tj-actions/coverage-badge-py/compare/v2.0.0...v2.0.1) - (2023-03-06) 166 | 167 | ## 📝 Other 168 | 169 | - PR [#122](https://github.com/tj-actions/coverage-badge-py/pull/122): to v2 ([440b498](https://github.com/tj-actions/coverage-badge-py/commit/440b498029502e8b445b83cfc4f555f2f7f23e76)) - (repo-ranger[bot]) 170 | - Merge branch 'main' into upgrade-to-v2 ([024f916](https://github.com/tj-actions/coverage-badge-py/commit/024f91634616458d08b090e2d9dc10b5eab9db74)) - (repo-ranger[bot]) 171 | 172 | # [2.0.0](https://github.com/tj-actions/coverage-badge-py/compare/v1.8...v2.0.0) - (2023-03-06) 173 | 174 | ## 📦 Bumps 175 | 176 | - Bump tj-actions/auto-doc from 1.7.1 to 1.7.2 177 | 178 | Bumps [tj-actions/auto-doc](https://github.com/tj-actions/auto-doc) from 1.7.1 to 1.7.2. 179 | - [Release notes](https://github.com/tj-actions/auto-doc/releases) 180 | - [Changelog](https://github.com/tj-actions/auto-doc/blob/main/HISTORY.md) 181 | - [Commits](https://github.com/tj-actions/auto-doc/compare/v1.7.1...v1.7.2) 182 | 183 | --- 184 | updated-dependencies: 185 | - dependency-name: tj-actions/auto-doc 186 | dependency-type: direct:production 187 | update-type: version-update:semver-patch 188 | ... 189 | 190 | Signed-off-by: dependabot[bot] ([43fbc04](https://github.com/tj-actions/coverage-badge-py/commit/43fbc0417295421ad11f68435eea9cb475e7a627)) - (dependabot[bot]) 191 | - Bump hmarr/auto-approve-action from 2 to 3 192 | 193 | Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from 2 to 3. 194 | - [Release notes](https://github.com/hmarr/auto-approve-action/releases) 195 | - [Commits](https://github.com/hmarr/auto-approve-action/compare/v2...v3) 196 | 197 | --- 198 | updated-dependencies: 199 | - dependency-name: hmarr/auto-approve-action 200 | dependency-type: direct:production 201 | update-type: version-update:semver-major 202 | ... 203 | 204 | Signed-off-by: dependabot[bot] ([ee7a9b5](https://github.com/tj-actions/coverage-badge-py/commit/ee7a9b58229de57f74c87435cd618fe768a01bb6)) - (dependabot[bot]) 205 | - Bump pascalgn/automerge-action from 0.15.3 to 0.15.5 206 | 207 | Bumps [pascalgn/automerge-action](https://github.com/pascalgn/automerge-action) from 0.15.3 to 0.15.5. 208 | - [Release notes](https://github.com/pascalgn/automerge-action/releases) 209 | - [Commits](https://github.com/pascalgn/automerge-action/compare/v0.15.3...v0.15.5) 210 | 211 | --- 212 | updated-dependencies: 213 | - dependency-name: pascalgn/automerge-action 214 | dependency-type: direct:production 215 | update-type: version-update:semver-patch 216 | ... 217 | 218 | Signed-off-by: dependabot[bot] ([e868e9c](https://github.com/tj-actions/coverage-badge-py/commit/e868e9ca47a95be27144f5e50f1044a14849ccf5)) - (dependabot[bot]) 219 | - Bump codacy/codacy-analysis-cli-action from 4.1.0 to 4.2.0 220 | 221 | Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.1.0 to 4.2.0. 222 | - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) 223 | - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/v4.1.0...v4.2.0) 224 | 225 | --- 226 | updated-dependencies: 227 | - dependency-name: codacy/codacy-analysis-cli-action 228 | dependency-type: direct:production 229 | update-type: version-update:semver-minor 230 | ... 231 | 232 | Signed-off-by: dependabot[bot] ([1e52896](https://github.com/tj-actions/coverage-badge-py/commit/1e52896042eab357c5aba8ebdeab25cc7a69aa70)) - (dependabot[bot]) 233 | - Bump pascalgn/automerge-action from 0.15.2 to 0.15.3 234 | 235 | Bumps [pascalgn/automerge-action](https://github.com/pascalgn/automerge-action) from 0.15.2 to 0.15.3. 236 | - [Release notes](https://github.com/pascalgn/automerge-action/releases) 237 | - [Commits](https://github.com/pascalgn/automerge-action/compare/v0.15.2...v0.15.3) 238 | 239 | --- 240 | updated-dependencies: 241 | - dependency-name: pascalgn/automerge-action 242 | dependency-type: direct:production 243 | update-type: version-update:semver-patch 244 | ... 245 | 246 | Signed-off-by: dependabot[bot] ([9a8a5f2](https://github.com/tj-actions/coverage-badge-py/commit/9a8a5f2bb88e22a88f97f8b8e00d19e6d5016c83)) - (dependabot[bot]) 247 | 248 | ## ➕ Add 249 | 250 | - Create test_main.py ([a195620](https://github.com/tj-actions/coverage-badge-py/commit/a1956203532501affe1dea1f9c552a465b762a17)) - (Tonye Jack) 251 | 252 | ## ➖ Remove 253 | 254 | - Removed igored files 255 | ([56ac051](https://github.com/tj-actions/coverage-badge-py/commit/56ac0518d6c1f88947d7054364fd54950481d896)) - (Tonye Jack) 256 | 257 | ## 🔄 Update 258 | 259 | - Updated README.md 260 | ([36936ed](https://github.com/tj-actions/coverage-badge-py/commit/36936edcc49471823a2fbe004a28b9eeb8d39493)) - (repo-ranger[bot]) 261 | - Update README.md 262 | ([7d05806](https://github.com/tj-actions/coverage-badge-py/commit/7d05806da9bf94345a85a6d86fdc42c59bd8996d)) - (Tonye Jack) 263 | - Update README.md 264 | ([d0cf030](https://github.com/tj-actions/coverage-badge-py/commit/d0cf030ec4dfa2e1c992e80b39ac6ac4d5304d04)) - (Tonye Jack) 265 | - Update the file pattern 266 | ([19b07f8](https://github.com/tj-actions/coverage-badge-py/commit/19b07f82fd178d3b323e26b0e9c46b23cc793265)) - (Tonye Jack) 267 | - Update .gitignore ([ae6c1e7](https://github.com/tj-actions/coverage-badge-py/commit/ae6c1e7b4126118f1c0cee64a78f1442115fb665)) - (Tonye Jack) 268 | - Update test.yml ([d249eed](https://github.com/tj-actions/coverage-badge-py/commit/d249eed6fe703f5a18b9ec059e8e53043f41c33b)) - (Tonye Jack) 269 | - Update pascalgn/automerge-action action to v0.15.6 ([36b54d8](https://github.com/tj-actions/coverage-badge-py/commit/36b54d8ceca61d2f648342e32e8066e5c2a53b1d)) - (renovate[bot]) 270 | - Updated .github/workflows/update-readme.yml ([d419ae8](https://github.com/tj-actions/coverage-badge-py/commit/d419ae8c84ab595ada0fcf7f0a3672d46a6a1837)) - (Tonye Jack) 271 | - Updated .github/workflows/update-readme.yml ([0a74cd6](https://github.com/tj-actions/coverage-badge-py/commit/0a74cd66179e388eec66c520b81883a7e59039fa)) - (Tonye Jack) 272 | - Updated .github/workflows/update-readme.yml ([67ab182](https://github.com/tj-actions/coverage-badge-py/commit/67ab1824e4540891ea2adef20f66a088ef294b60)) - (Tonye Jack) 273 | - Updated .github/workflows/update-readme.yml ([9f53247](https://github.com/tj-actions/coverage-badge-py/commit/9f53247dd717a7fd861b55a8035a1a266e77c822)) - (Tonye Jack) 274 | - Update actions/checkout action to v3.3.0 ([60ad8fe](https://github.com/tj-actions/coverage-badge-py/commit/60ad8fed8a8e07ecbc74105c0074163ca6e85960)) - (renovate[bot]) 275 | - Update tj-actions/auto-doc action to v1.7.3 ([f32265d](https://github.com/tj-actions/coverage-badge-py/commit/f32265d80a54b7942bc52d9d8fabfeec9e1d7e47)) - (renovate[bot]) 276 | - Updated README.md 277 | ([f14aa49](https://github.com/tj-actions/coverage-badge-py/commit/f14aa49ac482a28f05da103e960de11c1a09fdc5)) - (jackton1) 278 | - Updated .github/workflows/update-readme.yml ([5328b4a](https://github.com/tj-actions/coverage-badge-py/commit/5328b4a28826767a16888413c234b49f8a4ef2c0)) - (Tonye Jack) 279 | - Update tj-actions/auto-doc action to v1.7.2 ([ae578fe](https://github.com/tj-actions/coverage-badge-py/commit/ae578fe0e4dadf93c011dd5fcf0e8f8774abc13a)) - (renovate[bot]) 280 | - Update tj-actions/auto-doc action to v1.7.1 ([ff9bcb6](https://github.com/tj-actions/coverage-badge-py/commit/ff9bcb698b1c7a0181b29a3ff5d8ee33031cef8b)) - (renovate[bot]) 281 | - Update tj-actions/github-changelog-generator action to v1.17 ([a487dfa](https://github.com/tj-actions/coverage-badge-py/commit/a487dfaad1f803f468e6a24a74fd844c2fdd3018)) - (renovate[bot]) 282 | - Updated README.md 283 | ([ac43e35](https://github.com/tj-actions/coverage-badge-py/commit/ac43e35837242cc2c8230e22ab82ec7c4c049db9)) - (jackton1) 284 | - Update tj-actions/verify-changed-files action to v13 ([168955f](https://github.com/tj-actions/coverage-badge-py/commit/168955f8681cb6c24ef935307ea63531d81d0acb)) - (renovate[bot]) 285 | - Update tj-actions/auto-doc action to v1.6.0 ([9e3604d](https://github.com/tj-actions/coverage-badge-py/commit/9e3604d85a37a9f362a39b94443e45b5db9608fb)) - (renovate[bot]) 286 | - Update cirrus-actions/rebase action to v1.8 ([2b7add8](https://github.com/tj-actions/coverage-badge-py/commit/2b7add86c0ac3e1d99eaf0bd8eddf6a26937934a)) - (renovate[bot]) 287 | - Update sync-release-version.yml ([acdde93](https://github.com/tj-actions/coverage-badge-py/commit/acdde93b011a285b2f4edfb13a800046c30498d7)) - (Tonye Jack) 288 | - Update test.yml ([e29025c](https://github.com/tj-actions/coverage-badge-py/commit/e29025c6a8cbab7fc3aa40999ee2422fa1bee2e6)) - (Tonye Jack) 289 | - Update test.yml ([be5c5bb](https://github.com/tj-actions/coverage-badge-py/commit/be5c5bb1f114794d8ffd20a35a29b5a3f6328ceb)) - (Tonye Jack) 290 | - Update action.yml ([e8494e5](https://github.com/tj-actions/coverage-badge-py/commit/e8494e51341a035c5edb6d3baca69202a4ae042a)) - (Tonye Jack) 291 | - Update action.yml ([bf89df5](https://github.com/tj-actions/coverage-badge-py/commit/bf89df57ebbb235a3c6a107a05449c441c52ba6d)) - (Tonye Jack) 292 | - Update test.yml ([ebdb469](https://github.com/tj-actions/coverage-badge-py/commit/ebdb469367fe3b597a2db66b4a530404ad1864d0)) - (Tonye Jack) 293 | - Update main.py ([43a93d4](https://github.com/tj-actions/coverage-badge-py/commit/43a93d40c3503b76eed6d8ec579b6a371988ea28)) - (Tonye Jack) 294 | - Update main.py ([f061ff3](https://github.com/tj-actions/coverage-badge-py/commit/f061ff3dda6178eb238e9403ecae34eaf83495eb)) - (Tonye Jack) 295 | - Update tj-actions/auto-doc action to v1.5.0 ([19494b7](https://github.com/tj-actions/coverage-badge-py/commit/19494b7573d848c6304afb5741b8c3466618bdd8)) - (renovate[bot]) 296 | - Update peter-evans/create-pull-request action to v4.2.3 ([d365286](https://github.com/tj-actions/coverage-badge-py/commit/d36528609b01f61c969e44094744dd97f011286f)) - (renovate[bot]) 297 | - Update peter-evans/create-pull-request action to v4.2.2 ([8cae705](https://github.com/tj-actions/coverage-badge-py/commit/8cae705fcb0b3793b38f31de190cf87a4b5b06e7)) - (renovate[bot]) 298 | - Update peter-evans/create-pull-request action to v4.2.1 ([e49226c](https://github.com/tj-actions/coverage-badge-py/commit/e49226c55133ed2bf4c6b474abb62813e61bd8cb)) - (renovate[bot]) 299 | - Update README.md ([44551df](https://github.com/tj-actions/coverage-badge-py/commit/44551dfc5ce48e30cdc98f8e29c8fc6e2e7107f6)) - (Tonye Jack) 300 | - Updated README.md 301 | ([d4e6f99](https://github.com/tj-actions/coverage-badge-py/commit/d4e6f995704e68ee1c0e7bd4818e112c020aa6d8)) - (jackton1) 302 | - Update tj-actions/auto-doc action to v1.4.3 ([a6551bb](https://github.com/tj-actions/coverage-badge-py/commit/a6551bb55690a035828333cd7bb991b1d710858a)) - (renovate[bot]) 303 | - Update tj-actions/auto-doc action to v1.4.2 ([c993f26](https://github.com/tj-actions/coverage-badge-py/commit/c993f26dffe32a0ade2d16b532fdeadbd4284766)) - (renovate[bot]) 304 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([3fdb6a6](https://github.com/tj-actions/coverage-badge-py/commit/3fdb6a6779254fa44304e97a44e4ceaf38e8a084)) - (Tonye Jack) 305 | - Update peter-evans/create-pull-request action to v4.2.0 ([31d7fff](https://github.com/tj-actions/coverage-badge-py/commit/31d7fffff9c8727c751f6fc3fb54ea77bf32b365)) - (renovate[bot]) 306 | - Update peter-evans/create-pull-request action to v4.1.4 ([7267c94](https://github.com/tj-actions/coverage-badge-py/commit/7267c943e05eaffb28dcb978afa3527843825eb4)) - (renovate[bot]) 307 | - Update tj-actions/verify-changed-files action to v12 ([2e5e832](https://github.com/tj-actions/coverage-badge-py/commit/2e5e832214a7e7c62ce3e5147bc3712a1507e72b)) - (renovate[bot]) 308 | - Updated .github/workflows/greetings.yml ([5991fdd](https://github.com/tj-actions/coverage-badge-py/commit/5991fdd427a0b696e4a60da05b6a5dfa1d9f6e1c)) - (Tonye Jack) 309 | - Update peter-evans/create-pull-request action to v4.1.3 ([969d833](https://github.com/tj-actions/coverage-badge-py/commit/969d83343365c7bc103f31a958c105fa341aa5f7)) - (renovate[bot]) 310 | - Update peter-evans/create-pull-request action to v4.1.2 ([4c9ac15](https://github.com/tj-actions/coverage-badge-py/commit/4c9ac159d76a295ddc375917b56c0588d59f3c5b)) - (renovate[bot]) 311 | - Updated .github/workflows/sync-release-version.yml ([c5bd283](https://github.com/tj-actions/coverage-badge-py/commit/c5bd283d65296057130e13679d1c073d1f295e2a)) - (Tonye Jack) 312 | - Updated .github/workflows/sync-release-version.yml ([96443cf](https://github.com/tj-actions/coverage-badge-py/commit/96443cff3a25805ad8fb38713291be0bf972b11f)) - (Tonye Jack) 313 | - Updated .github/workflows/codacy-analysis.yml ([0830a81](https://github.com/tj-actions/coverage-badge-py/commit/0830a81a25e8512063889fef5205f9a06833b9cc)) - (Tonye Jack) 314 | - Updated .github/workflows/codacy-analysis.yml ([2451166](https://github.com/tj-actions/coverage-badge-py/commit/2451166d72de926b0c8d173d7648e531fd3cc2c7)) - (Tonye Jack) 315 | - Updated .github/workflows/greetings.yml ([207ce1b](https://github.com/tj-actions/coverage-badge-py/commit/207ce1b6cb4e548645b7ab3d001db6e470404f16)) - (Tonye Jack) 316 | - Updated .github/workflows/codacy-analysis.yml ([2d1e8a1](https://github.com/tj-actions/coverage-badge-py/commit/2d1e8a12ad3d694d5bf2c5eccaf3acdec0fbef2c)) - (Tonye Jack) 317 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([29247d4](https://github.com/tj-actions/coverage-badge-py/commit/29247d48a6ad8f80a1e843e3a2b8b46bc0375648)) - (Tonye Jack) 318 | - Updated .github/ISSUE_TEMPLATE/feature_request.yaml ([42c0ddd](https://github.com/tj-actions/coverage-badge-py/commit/42c0ddd93910dc74d27019d552b3c1b503593b49)) - (Tonye Jack) 319 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([77af6c1](https://github.com/tj-actions/coverage-badge-py/commit/77af6c13126991cb3df3adedc31e63e1b8cc01ad)) - (Tonye Jack) 320 | - Updated .github/workflows/sync-release-version.yml ([e6c8a4e](https://github.com/tj-actions/coverage-badge-py/commit/e6c8a4ebe1ef7e995425b953c03782800c5d3db8)) - (Tonye Jack) 321 | - Update tj-actions/sync-release-version action to v13 ([165b5b3](https://github.com/tj-actions/coverage-badge-py/commit/165b5b32923b7f4ca96f55144be907531ac625be)) - (renovate[bot]) 322 | - Update tj-actions/github-changelog-generator action to v1.15 ([20db50f](https://github.com/tj-actions/coverage-badge-py/commit/20db50f6624bfd870de85f36cbd53930afb99a44)) - (renovate[bot]) 323 | - Update tj-actions/verify-changed-files action to v11 ([9a66318](https://github.com/tj-actions/coverage-badge-py/commit/9a66318ad317f1287cd968a93c836e15e3e7745f)) - (renovate[bot]) 324 | - Update tj-actions/auto-doc action to v1.4.1 ([6f3e7b8](https://github.com/tj-actions/coverage-badge-py/commit/6f3e7b8ecd15072a6228b10976ec96d302421b67)) - (renovate[bot]) 325 | - Update peter-evans/create-pull-request action to v4.1.1 ([9b963b7](https://github.com/tj-actions/coverage-badge-py/commit/9b963b7b1ec9052fd2aa808cdc7c82b4434cd875)) - (renovate[bot]) 326 | - Update tj-actions/auto-doc action to v1.4.0 ([8b931ad](https://github.com/tj-actions/coverage-badge-py/commit/8b931add738adee89c13d1e534afaba91b7cf732)) - (renovate[bot]) 327 | - Update peter-evans/create-pull-request action to v4.1.0 ([03b9ebb](https://github.com/tj-actions/coverage-badge-py/commit/03b9ebbd4b6a0c902c28cc743831284bfaea3d41)) - (renovate[bot]) 328 | - Update tj-actions/auto-doc action to v1.3.1 ([404287f](https://github.com/tj-actions/coverage-badge-py/commit/404287fdb05a0d575e93b5ee3f2043af3cf922f1)) - (renovate[bot]) 329 | - Update tj-actions/auto-doc action to v1.3.0 ([42a4abf](https://github.com/tj-actions/coverage-badge-py/commit/42a4abf51051e1611e35ca404c84ea9519fb4868)) - (renovate[bot]) 330 | - Update tj-actions/github-changelog-generator action to v1.14 ([7962d1f](https://github.com/tj-actions/coverage-badge-py/commit/7962d1f1a832bfac4b3b980db6881e7d49ecfb24)) - (renovate[bot]) 331 | - Update tj-actions/verify-changed-files action to v10 ([83823a8](https://github.com/tj-actions/coverage-badge-py/commit/83823a8c35fda37d12694728529b4c1467bb8f9c)) - (renovate[bot]) 332 | - Update main.py ([6dfdb51](https://github.com/tj-actions/coverage-badge-py/commit/6dfdb516bdc0dd216d503d7d1c5290baefe91145)) - (Tonye Jack) 333 | - Update codacy/codacy-analysis-cli-action action to v4.1.0 334 | ([7dae95b](https://github.com/tj-actions/coverage-badge-py/commit/7dae95b4602f7fb36986b429587e719c9aed1b71)) - (Renovate Bot) 335 | - Update peter-evans/create-pull-request action to v4.0.4 336 | ([175e1c5](https://github.com/tj-actions/coverage-badge-py/commit/175e1c5a2de8cb87d4bc34770dc6e6dbe03f7adc)) - (Renovate Bot) 337 | - Update tj-actions/auto-doc action to v1.2.15 338 | ([f3831ed](https://github.com/tj-actions/coverage-badge-py/commit/f3831ed3db7da2cc263c06687dcdd595d77b490b)) - (Renovate Bot) 339 | - Update cirrus-actions/rebase action to v1.7 340 | ([559e0bd](https://github.com/tj-actions/coverage-badge-py/commit/559e0bde3a02ba225a4fe4aee24aea1298abf9d6)) - (Renovate Bot) 341 | - Update peter-evans/create-pull-request action to v4.0.3 342 | ([355b657](https://github.com/tj-actions/coverage-badge-py/commit/355b6573f76ab2772a0483acff0d21f3157232a6)) - (Renovate Bot) 343 | - Update github/codeql-action action to v2 344 | ([aaac875](https://github.com/tj-actions/coverage-badge-py/commit/aaac8752d00b26283d7a07c1fca1b43a08947f03)) - (Renovate Bot) 345 | - Update cirrus-actions/rebase action to v1.6 346 | ([f60cd67](https://github.com/tj-actions/coverage-badge-py/commit/f60cd67a24ac5fbe0b558034676486b67b2b4cfe)) - (Renovate Bot) 347 | - Update peter-evans/create-pull-request action to v4.0.2 348 | ([1ce5f81](https://github.com/tj-actions/coverage-badge-py/commit/1ce5f81b41dd6cc583b9dbef0d631b0fd304b875)) - (Renovate Bot) 349 | - Update peter-evans/create-pull-request action to v4.0.1 350 | ([6a1e09e](https://github.com/tj-actions/coverage-badge-py/commit/6a1e09eb13d021dd29b4c2087991bb9c3ad837af)) - (Renovate Bot) 351 | - Update README.md ([a3d612a](https://github.com/tj-actions/coverage-badge-py/commit/a3d612ac45d4cbd0bf66e38ec9a22ecab9f3a1fb)) - (Tonye Jack) 352 | - Update README.md ([742509c](https://github.com/tj-actions/coverage-badge-py/commit/742509cecaedaef90800d39b2388c88d2a662c1c)) - (Tonye Jack) 353 | - Update README.md ([d79b84f](https://github.com/tj-actions/coverage-badge-py/commit/d79b84f519d30c47208108a51ead13d57866e68c)) - (Tonye Jack) 354 | 355 | ## 📝 Other 356 | 357 | - PR [#121](https://github.com/tj-actions/coverage-badge-py/pull/121): README.md ([33ff5c9](https://github.com/tj-actions/coverage-badge-py/commit/33ff5c96d9f6e75cb1df28be47a034decdc3d7f5)) - (repo-ranger[bot]) 358 | - PR [#48](https://github.com/tj-actions/coverage-badge-py/pull/48): test and updated supported platforms ([634a65b](https://github.com/tj-actions/coverage-badge-py/commit/634a65b4349260a9ac6ed1ea6511db09afdeb31d)) - (repo-ranger[bot]) 359 | - Merge branch 'main' into feature/add-test-and-update-supported-platforms 360 | ([fba4ac0](https://github.com/tj-actions/coverage-badge-py/commit/fba4ac0f75259f39f4ea950277ab14468acbddfc)) - (Tonye Jack) 361 | - Merge 0ac72d061fc477e554ecdd0c44a36ba03d61ecda into 36b54d8ceca61d2f648342e32e8066e5c2a53b1d 362 | ([b6ee2c6](https://github.com/tj-actions/coverage-badge-py/commit/b6ee2c6716e97e228d9f3340e41b3f43189aed1c)) - (Tonye Jack) 363 | - Merge d249eed6fe703f5a18b9ec059e8e53043f41c33b into 36b54d8ceca61d2f648342e32e8066e5c2a53b1d 364 | ([45a59a0](https://github.com/tj-actions/coverage-badge-py/commit/45a59a0944a1b458cef333f3dae8e49cea94f627)) - (Tonye Jack) 365 | - Merge branch 'main' into feature/add-test-and-update-supported-platforms ([20090af](https://github.com/tj-actions/coverage-badge-py/commit/20090af92dcece197c6731c33bc57069a2a78265)) - (Tonye Jack) 366 | - PR [#114](https://github.com/tj-actions/coverage-badge-py/pull/114): README.md ([aba5950](https://github.com/tj-actions/coverage-badge-py/commit/aba5950cebd0b32cbb9110c992ab357e506b3a0e)) - (Tonye Jack) 367 | - PR [#110](https://github.com/tj-actions/coverage-badge-py/pull/110): ([42e5fc9](https://github.com/tj-actions/coverage-badge-py/commit/42e5fc91c0b90e8e1e59a73d38633f99175dec2a)) - (Tonye Jack) 368 | - Merge branch 'main' into feature/add-test-and-update-supported-platforms ([a026b85](https://github.com/tj-actions/coverage-badge-py/commit/a026b85efd300bd49c11f3ff22291657c0f8d471)) - (Tonye Jack) 369 | - PR [#101](https://github.com/tj-actions/coverage-badge-py/pull/101): ([22e4f2d](https://github.com/tj-actions/coverage-badge-py/commit/22e4f2d25ee698eb050789e751d76f9637a864e4)) - (Tonye Jack) 370 | - Merge branch 'main' into feature/add-test-and-update-supported-platforms ([769edcd](https://github.com/tj-actions/coverage-badge-py/commit/769edcd535ea9ab7ceb599c410c0b8a766d02c9b)) - (Tonye Jack) 371 | - PR [#71](https://github.com/tj-actions/coverage-badge-py/pull/71): to v1.8 ([cd5a831](https://github.com/tj-actions/coverage-badge-py/commit/cd5a83135ae977b800de816d2fb131d941f91dcf)) - (Tonye Jack) 372 | 373 | ## ⚙️ Miscellaneous Tasks 374 | 375 | - Update coverage badge. ([28d80e4](https://github.com/tj-actions/coverage-badge-py/commit/28d80e400e2b72200667af786b62161a0374a544)) - (github-actions[bot]) 376 | - Update coverage badge. ([0ac72d0](https://github.com/tj-actions/coverage-badge-py/commit/0ac72d061fc477e554ecdd0c44a36ba03d61ecda)) - (github-actions[bot]) 377 | 378 | ## ⬆️ Upgrades 379 | 380 | - Upgraded from v1.7 -> v2 381 | ([a202602](https://github.com/tj-actions/coverage-badge-py/commit/a20260251d1dafada6b1185ae3eda28ad36a7003)) - (jackton1) 382 | - Upgraded from v1.7 -> v1.8 383 | ([81e1549](https://github.com/tj-actions/coverage-badge-py/commit/81e15490e2cfd0c12d1aaa3b533cc4657024f16d)) - (jackton1) 384 | 385 | # [1.8](https://github.com/tj-actions/coverage-badge-py/compare/v1.7...v1.8) - (2022-03-29) 386 | 387 | ## 🔄 Update 388 | 389 | - Updated README.md 390 | ([64b538f](https://github.com/tj-actions/coverage-badge-py/commit/64b538f756d552a24d483405e5438f7e3b54455c)) - (jackton1) 391 | - Update README.md ([6994ad7](https://github.com/tj-actions/coverage-badge-py/commit/6994ad7501256a5d7eb6eaff108fefd1b44f25bb)) - (Tonye Jack) 392 | 393 | ## 📝 Other 394 | 395 | - PR [#70](https://github.com/tj-actions/coverage-badge-py/pull/70): README.md ([c3a0870](https://github.com/tj-actions/coverage-badge-py/commit/c3a0870495183a1848c89d568db7a4e7954fee71)) - (Tonye Jack) 396 | 397 | # [1.7](https://github.com/tj-actions/coverage-badge-py/compare/v1.6...v1.7) - (2022-03-25) 398 | 399 | ## 📦 Bumps 400 | 401 | - Bump tj-actions/remark from 2.3 to 3 402 | 403 | Bumps [tj-actions/remark](https://github.com/tj-actions/remark) from 2.3 to 3. 404 | - [Release notes](https://github.com/tj-actions/remark/releases) 405 | - [Changelog](https://github.com/tj-actions/remark/blob/main/HISTORY.md) 406 | - [Commits](https://github.com/tj-actions/remark/compare/v2.3...v3) 407 | 408 | --- 409 | updated-dependencies: 410 | - dependency-name: tj-actions/remark 411 | dependency-type: direct:production 412 | update-type: version-update:semver-major 413 | ... 414 | 415 | Signed-off-by: dependabot[bot] ([f9ec9f4](https://github.com/tj-actions/coverage-badge-py/commit/f9ec9f43a69ecb790d2252558f00af18cb00722f)) - (dependabot[bot]) 416 | - Bump codacy/codacy-analysis-cli-action from 4.0.1 to 4.0.2 417 | 418 | Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.0.1 to 4.0.2. 419 | - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) 420 | - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/4.0.1...4.0.2) 421 | 422 | --- 423 | updated-dependencies: 424 | - dependency-name: codacy/codacy-analysis-cli-action 425 | dependency-type: direct:production 426 | update-type: version-update:semver-patch 427 | ... 428 | 429 | Signed-off-by: dependabot[bot] ([aa49bda](https://github.com/tj-actions/coverage-badge-py/commit/aa49bda1236dcc664eb360db354ca0d4ec637440)) - (dependabot[bot]) 430 | - Bump actions/checkout from 2 to 3 431 | 432 | Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. 433 | - [Release notes](https://github.com/actions/checkout/releases) 434 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 435 | - [Commits](https://github.com/actions/checkout/compare/v2...v3) 436 | 437 | --- 438 | updated-dependencies: 439 | - dependency-name: actions/checkout 440 | dependency-type: direct:production 441 | update-type: version-update:semver-major 442 | ... 443 | 444 | Signed-off-by: dependabot[bot] ([748a3e1](https://github.com/tj-actions/coverage-badge-py/commit/748a3e1943523fe91174e7a59eaad3fbb94340d2)) - (dependabot[bot]) 445 | - Bump tj-actions/sync-release-version from 8.7 to 9 446 | 447 | Bumps [tj-actions/sync-release-version](https://github.com/tj-actions/sync-release-version) from 8.7 to 9. 448 | - [Release notes](https://github.com/tj-actions/sync-release-version/releases) 449 | - [Changelog](https://github.com/tj-actions/sync-release-version/blob/main/HISTORY.md) 450 | - [Commits](https://github.com/tj-actions/sync-release-version/compare/v8.7...v9) 451 | 452 | --- 453 | updated-dependencies: 454 | - dependency-name: tj-actions/sync-release-version 455 | dependency-type: direct:production 456 | update-type: version-update:semver-major 457 | ... 458 | 459 | Signed-off-by: dependabot[bot] ([98ee9d0](https://github.com/tj-actions/coverage-badge-py/commit/98ee9d076015c941de04f9c5b7d5fe63d12eded7)) - (dependabot[bot]) 460 | - Bump tj-actions/verify-changed-files from 7 to 8 461 | 462 | Bumps [tj-actions/verify-changed-files](https://github.com/tj-actions/verify-changed-files) from 7 to 8. 463 | - [Release notes](https://github.com/tj-actions/verify-changed-files/releases) 464 | - [Changelog](https://github.com/tj-actions/verify-changed-files/blob/main/HISTORY.md) 465 | - [Commits](https://github.com/tj-actions/verify-changed-files/compare/v7...v8) 466 | 467 | --- 468 | updated-dependencies: 469 | - dependency-name: tj-actions/verify-changed-files 470 | dependency-type: direct:production 471 | update-type: version-update:semver-major 472 | ... 473 | 474 | Signed-off-by: dependabot[bot] ([5391cc0](https://github.com/tj-actions/coverage-badge-py/commit/5391cc08baf7e15f36dead73a69cb70836a84fdf)) - (dependabot[bot]) 475 | - Bump pascalgn/automerge-action from 0.14.2 to 0.14.3 476 | 477 | Bumps [pascalgn/automerge-action](https://github.com/pascalgn/automerge-action) from 0.14.2 to 0.14.3. 478 | - [Release notes](https://github.com/pascalgn/automerge-action/releases) 479 | - [Commits](https://github.com/pascalgn/automerge-action/compare/v0.14.2...v0.14.3) 480 | 481 | --- 482 | updated-dependencies: 483 | - dependency-name: pascalgn/automerge-action 484 | dependency-type: direct:production 485 | update-type: version-update:semver-patch 486 | ... 487 | 488 | Signed-off-by: dependabot[bot] ([9d12a95](https://github.com/tj-actions/coverage-badge-py/commit/9d12a959894f8c8cf374e3cb05c11b323c5d024d)) - (dependabot[bot]) 489 | - Bump tj-actions/remark from 1.5 to 1.7 490 | 491 | Bumps [tj-actions/remark](https://github.com/tj-actions/remark) from 1.5 to 1.7. 492 | - [Release notes](https://github.com/tj-actions/remark/releases) 493 | - [Changelog](https://github.com/tj-actions/remark/blob/main/HISTORY.md) 494 | - [Commits](https://github.com/tj-actions/remark/compare/v1.5...v1.7) 495 | 496 | --- 497 | updated-dependencies: 498 | - dependency-name: tj-actions/remark 499 | dependency-type: direct:production 500 | update-type: version-update:semver-minor 501 | ... 502 | 503 | Signed-off-by: dependabot[bot] ([fced29f](https://github.com/tj-actions/coverage-badge-py/commit/fced29feb3ca068de4ae46859c502c9177f3f1c5)) - (dependabot[bot]) 504 | - Bump peter-evans/create-pull-request from 3.10.0 to 3.10.1 505 | 506 | Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3.10.0 to 3.10.1. 507 | - [Release notes](https://github.com/peter-evans/create-pull-request/releases) 508 | - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.10.0...v3.10.1) 509 | 510 | --- 511 | updated-dependencies: 512 | - dependency-name: peter-evans/create-pull-request 513 | dependency-type: direct:production 514 | update-type: version-update:semver-patch 515 | ... 516 | 517 | Signed-off-by: dependabot[bot] ([506b830](https://github.com/tj-actions/coverage-badge-py/commit/506b8309f4f3b009e44954141f8a7500b5d020df)) - (dependabot[bot]) 518 | - Bump peter-evans/create-pull-request from 3.9.2 to 3.10.0 519 | 520 | Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3.9.2 to 3.10.0. 521 | - [Release notes](https://github.com/peter-evans/create-pull-request/releases) 522 | - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.9.2...v3.10.0) 523 | 524 | Signed-off-by: dependabot[bot] ([92e1bcc](https://github.com/tj-actions/coverage-badge-py/commit/92e1bcc31b488b7960a00da4194ad7179f0fe302)) - (dependabot[bot]) 525 | - Bump peter-evans/create-pull-request from 3.9.1 to 3.9.2 526 | 527 | Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3.9.1 to 3.9.2. 528 | - [Release notes](https://github.com/peter-evans/create-pull-request/releases) 529 | - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.9.1...v3.9.2) 530 | 531 | Signed-off-by: dependabot[bot] ([4dbda73](https://github.com/tj-actions/coverage-badge-py/commit/4dbda73f91249b374bf94295e03787a852a62492)) - (dependabot[bot]) 532 | - Bump peter-evans/create-pull-request from 3 to 3.9.1 533 | 534 | Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3 to 3.9.1. 535 | - [Release notes](https://github.com/peter-evans/create-pull-request/releases) 536 | - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3...v3.9.1) 537 | 538 | Signed-off-by: dependabot[bot] ([b1faef6](https://github.com/tj-actions/coverage-badge-py/commit/b1faef6a2ab42bdf7ac2a22fdb40456f0e666c00)) - (dependabot[bot]) 539 | - Bump actions/checkout from 2 to 2.3.4 540 | 541 | Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4. 542 | - [Release notes](https://github.com/actions/checkout/releases) 543 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 544 | - [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4) 545 | 546 | Signed-off-by: dependabot[bot] ([f5a20b3](https://github.com/tj-actions/coverage-badge-py/commit/f5a20b30f19641784bf4768df10aef75a7e5c35a)) - (dependabot[bot]) 547 | - Bump tj-actions/sync-release-version from v8 to v8.5 548 | 549 | Bumps [tj-actions/sync-release-version](https://github.com/tj-actions/sync-release-version) from v8 to v8.5. 550 | - [Release notes](https://github.com/tj-actions/sync-release-version/releases) 551 | - [Changelog](https://github.com/tj-actions/sync-release-version/blob/main/HISTORY.md) 552 | - [Commits](https://github.com/tj-actions/sync-release-version/compare/v8...c3648fd109a88e7fde67648288c2a55d1b8ece2c) 553 | 554 | Signed-off-by: dependabot[bot] ([9d03b68](https://github.com/tj-actions/coverage-badge-py/commit/9d03b688779f01db5b8e35d95bbad7b99cdf06be)) - (dependabot[bot]) 555 | 556 | ## ➕ Add 557 | 558 | - Added setup.py 559 | ([ce5eaff](https://github.com/tj-actions/coverage-badge-py/commit/ce5eaff49badbfe22a2c0a1e1ab1037cf23b773f)) - (Tonye Jack) 560 | - Create main.py ([895705b](https://github.com/tj-actions/coverage-badge-py/commit/895705bfa497b2753a4a8f85774d9a72c9077712)) - (Tonye Jack) 561 | - Added test and updated supported platforms ([b81e2f0](https://github.com/tj-actions/coverage-badge-py/commit/b81e2f08fb35091586232496c09525508d6dea6a)) - (Tonye Jack) 562 | - Add Codacy badge ([f96af06](https://github.com/tj-actions/coverage-badge-py/commit/f96af060065698ac7f5c9b537ac7bf274d42ed03)) - (The Codacy Badger) 563 | - Added .github/workflows/codacy-analysis.yml ([26765f4](https://github.com/tj-actions/coverage-badge-py/commit/26765f435c0ac3ae1c6f87409234509d9f6c604f)) - (Tonye Jack) 564 | - Added .github/workflows/codacy-analysis.yml ([10e81ee](https://github.com/tj-actions/coverage-badge-py/commit/10e81ee8437c215cfba41d862aeb44eb0360c8a4)) - (Tonye Jack) 565 | - Added .github/workflows/greetings.yml ([b4446bb](https://github.com/tj-actions/coverage-badge-py/commit/b4446bb89bd27caea007f949617e36b2d5dba4b5)) - (Tonye Jack) 566 | - Added CODE_OF_CONDUCT.md ([af80fbd](https://github.com/tj-actions/coverage-badge-py/commit/af80fbde0202e9723630672c7645e013159b1ede)) - (Tonye Jack) 567 | - Added .github/ISSUE_TEMPLATE/feature_request.yaml ([7b626da](https://github.com/tj-actions/coverage-badge-py/commit/7b626dae20e9bb13dc5254b205155c7ab24c0fee)) - (Tonye Jack) 568 | - Added .github/ISSUE_TEMPLATE/bug_report.yaml ([2751fb8](https://github.com/tj-actions/coverage-badge-py/commit/2751fb8935bfcd2710c48432826fdcd8a3b15e14)) - (Tonye Jack) 569 | - Added .whitesource ([02f36d3](https://github.com/tj-actions/coverage-badge-py/commit/02f36d3ede79b614372181c3831e6f6a47a91477)) - (Tonye Jack) 570 | - Added .github/workflows/update-readme.yml ([478c6c3](https://github.com/tj-actions/coverage-badge-py/commit/478c6c3457af7244da36dea65b461e997eebbd7d)) - (Tonye Jack) 571 | - Added .github/workflows/auto-merge.yml ([d519d18](https://github.com/tj-actions/coverage-badge-py/commit/d519d181681eab72eb6f3bc7288a8bf03cbcc1a7)) - (Tonye Jack) 572 | 573 | ## ➖ Remove 574 | 575 | - Deleted .github/workflows/codacy-analysis.yml ([7f6e204](https://github.com/tj-actions/coverage-badge-py/commit/7f6e204e7d8bc19c5c6512ec51cf8811df0122e4)) - (Tonye Jack) 576 | - Deleted .github/ISSUE_TEMPLATE/feature_request.md ([10a4b44](https://github.com/tj-actions/coverage-badge-py/commit/10a4b44466706b7425e80caf66ccffa8cefa60e1)) - (Tonye Jack) 577 | - Deleted .github/ISSUE_TEMPLATE/bug_report.md ([35754e8](https://github.com/tj-actions/coverage-badge-py/commit/35754e868f9f07362b8e7005b213ff38b3b68c35)) - (Tonye Jack) 578 | 579 | ## 🔄 Update 580 | 581 | - Update pascalgn/automerge-action action to v0.15.2 582 | ([c6a8097](https://github.com/tj-actions/coverage-badge-py/commit/c6a8097cf36a4d2c4a9052200f4ffb7536a3ef25)) - (Renovate Bot) 583 | - Update pascalgn/automerge-action action to v0.14.4 584 | ([dd51b63](https://github.com/tj-actions/coverage-badge-py/commit/dd51b635e8e29ab2c99b8fce66602077cc549fda)) - (Renovate Bot) 585 | - Update peter-evans/create-pull-request action to v4 586 | ([aa027e6](https://github.com/tj-actions/coverage-badge-py/commit/aa027e68b23c1c68c01a51a2018570a13ffe57ba)) - (Renovate Bot) 587 | - Update tj-actions/auto-doc action to v1.2.14 588 | ([ef5c195](https://github.com/tj-actions/coverage-badge-py/commit/ef5c1957b85f5cfd040c72ce2bd36d29ff657109)) - (Renovate Bot) 589 | - Update tj-actions/github-changelog-generator action to v1.13 590 | ([966ab79](https://github.com/tj-actions/coverage-badge-py/commit/966ab792651f68e60294dce072863db6a4f1c3ac)) - (Renovate Bot) 591 | - Update tj-actions/verify-changed-files action to v9 592 | ([1522169](https://github.com/tj-actions/coverage-badge-py/commit/1522169217d87502cc5685466f9e42f9ac657a4b)) - (Renovate Bot) 593 | - Update codacy/codacy-analysis-cli-action action to v4.0.1 594 | ([d830b66](https://github.com/tj-actions/coverage-badge-py/commit/d830b66bb9b22583a0457a1dbd4451ec794d9522)) - (Renovate Bot) 595 | - Update peter-evans/create-pull-request action to v3.14.0 596 | ([a2e3b3d](https://github.com/tj-actions/coverage-badge-py/commit/a2e3b3dd2147cbb40d78d01cd631ea699425ef9e)) - (Renovate Bot) 597 | - Update peter-evans/create-pull-request action to v3.13.0 598 | ([b5f6985](https://github.com/tj-actions/coverage-badge-py/commit/b5f69850bd68937aae005f5d91e7ed3340de58c4)) - (Renovate Bot) 599 | - Update tj-actions/github-changelog-generator action to v1.12 600 | ([3e67f75](https://github.com/tj-actions/coverage-badge-py/commit/3e67f75615d9fb39f18baa2457e06ba7d307bf68)) - (Renovate Bot) 601 | - Update tj-actions/sync-release-version action to v11 602 | ([d857ed4](https://github.com/tj-actions/coverage-badge-py/commit/d857ed45f394ab99213434f183a9517d69f14fc5)) - (Renovate Bot) 603 | - Updated README.md 604 | ([231dd20](https://github.com/tj-actions/coverage-badge-py/commit/231dd201ccfe3f3250ae8afea18416c20c010438)) - (jackton1) 605 | - Update README.md ([144f6a1](https://github.com/tj-actions/coverage-badge-py/commit/144f6a1414d4ac4e5c66e01259af5a3d0e2c31d2)) - (Tonye Jack) 606 | - Updated .github/workflows/greetings.yml ([b516e52](https://github.com/tj-actions/coverage-badge-py/commit/b516e52c3c556ad8d5fdd61ce0e15c44a72eb7a4)) - (Tonye Jack) 607 | - Updated .github/workflows/greetings.yml ([0f622b8](https://github.com/tj-actions/coverage-badge-py/commit/0f622b836066a8435e75f4cd04eca45ed9e0147a)) - (Tonye Jack) 608 | - Update README.md ([19bebac](https://github.com/tj-actions/coverage-badge-py/commit/19bebacea956a480508698cb2830cbe4ff542655)) - (Tonye Jack) 609 | - Update tj-actions/auto-doc action to v1.2.13 610 | ([f9c9631](https://github.com/tj-actions/coverage-badge-py/commit/f9c9631cfa7437ff7ddeb8598efe50d271b63414)) - (Renovate Bot) 611 | - Updated README.md 612 | ([851db85](https://github.com/tj-actions/coverage-badge-py/commit/851db8563c7e33b8534fd673997accb74ce81801)) - (jackton1) 613 | - Update tj-actions/auto-doc action to v1.2.11 614 | ([0d7a08d](https://github.com/tj-actions/coverage-badge-py/commit/0d7a08d9ff5fb8c3615e41fdc2c1cd4020990b15)) - (Renovate Bot) 615 | - Update peter-evans/create-pull-request action to v3.12.1 616 | ([dec4500](https://github.com/tj-actions/coverage-badge-py/commit/dec4500dc0a1eeefff8b0245e3e2925b2e0719b4)) - (Renovate Bot) 617 | - Update README.md ([3936761](https://github.com/tj-actions/coverage-badge-py/commit/3936761ee77c4162c2bc4384cc38f3d83e111bf3)) - (Tonye Jack) 618 | - Updated README.md 619 | ([f76367a](https://github.com/tj-actions/coverage-badge-py/commit/f76367a8a733c850ba349968b9c8e464c4e02076)) - (jackton1) 620 | - Update update-readme.yml ([8fca147](https://github.com/tj-actions/coverage-badge-py/commit/8fca147bdb0c7c556644bdbdf8e5241554248103)) - (Tonye Jack) 621 | - Update action.yml ([764e26b](https://github.com/tj-actions/coverage-badge-py/commit/764e26b3b397e4545e3154d5e3626bf5000f6f7e)) - (Tonye Jack) 622 | - Update action.yml ([8f4b706](https://github.com/tj-actions/coverage-badge-py/commit/8f4b7061208fd859c3af51ba143fc045933b4f97)) - (Tonye Jack) 623 | - Update setup.py ([f5a2e3e](https://github.com/tj-actions/coverage-badge-py/commit/f5a2e3e95a9a789db00047642f08f4477ada8850)) - (Tonye Jack) 624 | - Update main.py ([72affad](https://github.com/tj-actions/coverage-badge-py/commit/72affad76b349bf952114520717268728b7a3567)) - (Tonye Jack) 625 | - Update README.md ([5bf3e1e](https://github.com/tj-actions/coverage-badge-py/commit/5bf3e1ef7cf984af366a06671cab09d36961edd0)) - (Tonye Jack) 626 | - Update tj-actions/remark action to v2.3 627 | ([a4e48c4](https://github.com/tj-actions/coverage-badge-py/commit/a4e48c491ae498478b88dd6c622b3613c6fbbe9b)) - (Renovate Bot) 628 | - Update tj-actions/remark action to v2.2 629 | ([4b08e06](https://github.com/tj-actions/coverage-badge-py/commit/4b08e06abffbd806cfdcc4ad1e1af3c9dd2953d2)) - (Renovate Bot) 630 | - Update tj-actions/remark action to v2 631 | ([afb9235](https://github.com/tj-actions/coverage-badge-py/commit/afb923582bfdeceef5eb6273f66360cf34517cc6)) - (Renovate Bot) 632 | - Update tj-actions/github-changelog-generator action to v1.11 633 | ([c03a3df](https://github.com/tj-actions/coverage-badge-py/commit/c03a3df3a69f6e59b2b90be2f6f0261ada197df1)) - (Renovate Bot) 634 | - Update tj-actions/github-changelog-generator action to v1.10 635 | ([4528373](https://github.com/tj-actions/coverage-badge-py/commit/452837316c2e8848b9e053f43b3a25ebdc93d06c)) - (Renovate Bot) 636 | - Update peter-evans/create-pull-request action to v3.12.0 637 | ([7b7a6e3](https://github.com/tj-actions/coverage-badge-py/commit/7b7a6e314cca38ac13cc2bc306902525b00730ba)) - (Renovate Bot) 638 | - Updated README.md 639 | ([f1501c3](https://github.com/tj-actions/coverage-badge-py/commit/f1501c3e9f5560f04aa04308d23833bfa6ec0e3f)) - (jackton1) 640 | - Update README.md ([23a2127](https://github.com/tj-actions/coverage-badge-py/commit/23a212755bc40ed6273a092fcbb94a32c78e36ca)) - (Tonye Jack) 641 | - Update README.md ([b0fab1e](https://github.com/tj-actions/coverage-badge-py/commit/b0fab1e0ab01e45c91930a23cb110d577933e05b)) - (Tonye Jack) 642 | - Updated .github/workflows/auto-merge.yml ([aa18a36](https://github.com/tj-actions/coverage-badge-py/commit/aa18a36455f181399911a3905a0545bebddb38f4)) - (Tonye Jack) 643 | - Update README.md ([fac53da](https://github.com/tj-actions/coverage-badge-py/commit/fac53da4353c58ea00f1f5f015349365bd1cf3a4)) - (Tonye Jack) 644 | - Update README.md ([d503616](https://github.com/tj-actions/coverage-badge-py/commit/d5036167cbd3d5d7b784a8f3af6f067c9618079b)) - (Tonye Jack) 645 | - Update peter-evans/create-pull-request action to v3.11.0 646 | ([d1d650a](https://github.com/tj-actions/coverage-badge-py/commit/d1d650a9ee6e2434cc75f5a7a744550fd974d370)) - (Renovate Bot) 647 | - Updated README.md 648 | ([e749a72](https://github.com/tj-actions/coverage-badge-py/commit/e749a72c116ee7c414bb269d969cac702c763c59)) - (jackton1) 649 | - Update actions/checkout action to v2.4.0 650 | ([e176f5c](https://github.com/tj-actions/coverage-badge-py/commit/e176f5c11a55eaca3aa02a94aaf7ed8aac38942d)) - (Renovate Bot) 651 | - Updated .github/ISSUE_TEMPLATE/feature_request.yaml ([002a71c](https://github.com/tj-actions/coverage-badge-py/commit/002a71c8f8f523e64268d7a19522632ee88f3620)) - (Tonye Jack) 652 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([706366f](https://github.com/tj-actions/coverage-badge-py/commit/706366f5ae7c423d95e0a3e7c270bca6fe88b3a2)) - (Tonye Jack) 653 | - Update actions/checkout action to v2.3.5 654 | ([22ed172](https://github.com/tj-actions/coverage-badge-py/commit/22ed172c8de5bc9d9a92e271452f65e3491e89fe)) - (Renovate Bot) 655 | - Updated renovate.json ([88fca5d](https://github.com/tj-actions/coverage-badge-py/commit/88fca5d42e568cf628571c0ed2ea864bf2968b65)) - (Tonye Jack) 656 | - Updated renovate.json ([f3b611c](https://github.com/tj-actions/coverage-badge-py/commit/f3b611c77d5d6f2de05d938c5b1a5ac64ab13f67)) - (Tonye Jack) 657 | - Update action.yml ([41fdafd](https://github.com/tj-actions/coverage-badge-py/commit/41fdafdff589cf8c648bc30c9c0e2ecdf7f4b9ea)) - (Tonye Jack) 658 | - Update README.md ([8e167bf](https://github.com/tj-actions/coverage-badge-py/commit/8e167bf43afc107a8a8ef12f47ef4db7d853a8a3)) - (Tonye Jack) 659 | - Updated README.md 660 | ([a028512](https://github.com/tj-actions/coverage-badge-py/commit/a0285120cbf60e12ccf44eb4dc8399c9481b3c01)) - (jackton1) 661 | - Update README.md ([d83b1ef](https://github.com/tj-actions/coverage-badge-py/commit/d83b1efdd5e06f5e0a9997f053596f1fb71b6ead)) - (Tonye Jack) 662 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([4ccd010](https://github.com/tj-actions/coverage-badge-py/commit/4ccd010a176438874887c56d1d4ea6b56eebdce8)) - (Tonye Jack) 663 | - Update codacy/codacy-analysis-cli-action action to v4 664 | ([353673e](https://github.com/tj-actions/coverage-badge-py/commit/353673e9797ac5b94ec07d570742f36db03bd068)) - (Renovate Bot) 665 | - Update codacy/codacy-analysis-cli-action action to v3 666 | ([787696c](https://github.com/tj-actions/coverage-badge-py/commit/787696c6f217fae814082c7ff2cd2423d0110e17)) - (Renovate Bot) 667 | - Updated .github/workflows/codacy-analysis.yml ([98809b2](https://github.com/tj-actions/coverage-badge-py/commit/98809b238e4790b3044f0a158a5803f4efd8d48a)) - (Tonye Jack) 668 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([63c4db8](https://github.com/tj-actions/coverage-badge-py/commit/63c4db8963d3642288f6fd8612a22efc26b8a8ed)) - (Tonye Jack) 669 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([615ec89](https://github.com/tj-actions/coverage-badge-py/commit/615ec89bc9f2a5f15ebe4ed66e6b729a86aae019)) - (Tonye Jack) 670 | - Update tj-actions/verify-changed-files action to v7 671 | ([af1afdf](https://github.com/tj-actions/coverage-badge-py/commit/af1afdfd5c736c79bd120ffe8353821ada35d45d)) - (Renovate Bot) 672 | - Updated README.md 673 | ([f1eb07b](https://github.com/tj-actions/coverage-badge-py/commit/f1eb07b3730da133a29e815d185bc957984f8e61)) - (jackton1) 674 | - Update README.md ([c7a4771](https://github.com/tj-actions/coverage-badge-py/commit/c7a47715f9cd813e952c53babe37bf7ea7a13183)) - (Tonye Jack) 675 | - Update README.md ([fb40832](https://github.com/tj-actions/coverage-badge-py/commit/fb40832bf945e7c8dc442dede92b7cec10718e18)) - (Tonye Jack) 676 | - Update tj-actions/sync-release-version action to v8.7 677 | ([dcb4d0f](https://github.com/tj-actions/coverage-badge-py/commit/dcb4d0f68875d2f86c2881aa4b175081c1f31de9)) - (Renovate Bot) 678 | - Updated .github/workflows/auto-merge.yml ([957c1bc](https://github.com/tj-actions/coverage-badge-py/commit/957c1bc55f01d931ca88e9026951d9eb38097a48)) - (Tonye Jack) 679 | - Updated .github/workflows/auto-merge.yml ([f6a4f58](https://github.com/tj-actions/coverage-badge-py/commit/f6a4f581301a6a6b20fa919abd0814c8e1497bbd)) - (Tonye Jack) 680 | - Updated .github/workflows/auto-approve.yml ([be2d805](https://github.com/tj-actions/coverage-badge-py/commit/be2d805f79f19218f893ac840b5c5f396ee6ca2c)) - (Tonye Jack) 681 | - Updated .github/workflows/auto-merge.yml ([67a3bb7](https://github.com/tj-actions/coverage-badge-py/commit/67a3bb70271dfff14b2b489fb6be345cc9140576)) - (Tonye Jack) 682 | - Update pascalgn/automerge-action action to v0.14.2 683 | ([519eed4](https://github.com/tj-actions/coverage-badge-py/commit/519eed45db47ff9e78a4f62d8501fcf3edee580c)) - (Renovate Bot) 684 | - Updated renovate.json ([f93903a](https://github.com/tj-actions/coverage-badge-py/commit/f93903afda7e45817a2706395916fbe0595b6b87)) - (Tonye Jack) 685 | - Updated .github/workflows/auto-approve.yml ([5355037](https://github.com/tj-actions/coverage-badge-py/commit/5355037d705e6cfc763f3d89a7c6ba98975daa2a)) - (Tonye Jack) 686 | - Update README.md ([6d7ce94](https://github.com/tj-actions/coverage-badge-py/commit/6d7ce940a4551b09c2840b0e96b58db9a9d7350b)) - (Tonye Jack) 687 | - Update README.md ([18ff279](https://github.com/tj-actions/coverage-badge-py/commit/18ff279ce19d55903b9003d2c3c4003b1f688b78)) - (Tonye Jack) 688 | - Update cirrus-actions/rebase action to v1.5 689 | ([dc321f5](https://github.com/tj-actions/coverage-badge-py/commit/dc321f5649c287d3ec203acee5652dfbfbe5f17f)) - (Renovate Bot) 690 | - Updated .github/workflows/auto-merge.yml ([1d21e6d](https://github.com/tj-actions/coverage-badge-py/commit/1d21e6d67cc42afa05348f4632804ec453adeb6a)) - (Tonye Jack) 691 | - Updated .github/workflows/auto-merge.yml ([019257d](https://github.com/tj-actions/coverage-badge-py/commit/019257d21dec65e23195d02d63d993385e0bd8f6)) - (Tonye Jack) 692 | - Updated .github/workflows/auto-merge.yml ([ecce825](https://github.com/tj-actions/coverage-badge-py/commit/ecce825e86108b4bcebd4fabc71e16ceb83c0305)) - (Tonye Jack) 693 | - Updated .github/workflows/auto-merge.yml ([6bb1cbe](https://github.com/tj-actions/coverage-badge-py/commit/6bb1cbe260a5b800dd8c2278459794ede42cac36)) - (Tonye Jack) 694 | - Update tj-actions/sync-release-version action to v8.6 695 | ([f21178e](https://github.com/tj-actions/coverage-badge-py/commit/f21178e70abd19d32583be2d7c4bb7ab010fecba)) - (Renovate Bot) 696 | 697 | ## 📝 Other 698 | 699 | - PR [#54](https://github.com/tj-actions/coverage-badge-py/pull/54): README.md ([523cc46](https://github.com/tj-actions/coverage-badge-py/commit/523cc466a7d5b022c15edde5783dbff1f7263bc7)) - (Tonye Jack) 700 | - PR [#52](https://github.com/tj-actions/coverage-badge-py/pull/52): README.md ([0b697db](https://github.com/tj-actions/coverage-badge-py/commit/0b697db463c294b90de9a9f623fe1746a5863827)) - (Tonye Jack) 701 | - PR [#49](https://github.com/tj-actions/coverage-badge-py/pull/49): README.md ([3855307](https://github.com/tj-actions/coverage-badge-py/commit/3855307bbe3b9a441e2d14ad97f8fcbdd8d39ce6)) - (Tonye Jack) 702 | - PR [#41](https://github.com/tj-actions/coverage-badge-py/pull/41): README.md ([fc0ac7a](https://github.com/tj-actions/coverage-badge-py/commit/fc0ac7a826dd7fc7e2a340bc9fade0c46d0abfa8)) - (Tonye Jack) 703 | - PR [#40](https://github.com/tj-actions/coverage-badge-py/pull/40): a Codacy badge to README.md ([d70c448](https://github.com/tj-actions/coverage-badge-py/commit/d70c4489a45c50db94128b84f1fa40d000109f72)) - (Tonye Jack) 704 | - PR [#38](https://github.com/tj-actions/coverage-badge-py/pull/38): ([1d386f9](https://github.com/tj-actions/coverage-badge-py/commit/1d386f978d7a008b4360e7d38561741fb62dde6b)) - (Tonye Jack) 705 | - PR [#34](https://github.com/tj-actions/coverage-badge-py/pull/34): ([339bf84](https://github.com/tj-actions/coverage-badge-py/commit/339bf84c2849b9b9218815ceadcbe90e1db9f76e)) - (Tonye Jack) 706 | - PR [#32](https://github.com/tj-actions/coverage-badge-py/pull/32): README.md ([894f95d](https://github.com/tj-actions/coverage-badge-py/commit/894f95da6796a495711f285eb963824740458a17)) - (Tonye Jack) 707 | - PR [#24](https://github.com/tj-actions/coverage-badge-py/pull/24): ([b4cde6e](https://github.com/tj-actions/coverage-badge-py/commit/b4cde6e84ba5b69f48cc4c3e53510b44101c2b6e)) - (Tonye Jack) 708 | - PR [#13](https://github.com/tj-actions/coverage-badge-py/pull/13): ([382223c](https://github.com/tj-actions/coverage-badge-py/commit/382223cb276fd2c3d5766f1b1f39117bdc8f83af)) - (Tonye Jack) 709 | - PR [#15](https://github.com/tj-actions/coverage-badge-py/pull/15): ([32c7348](https://github.com/tj-actions/coverage-badge-py/commit/32c7348046e0ce057733c0084c06121a9c286a40)) - (Tonye Jack) 710 | 711 | ## ⬆️ Upgrades 712 | 713 | - Upgraded from v1.5 -> v1.6 714 | ([214507d](https://github.com/tj-actions/coverage-badge-py/commit/214507da2ae77ef7bc22b831f23560174fae2dae)) - (jackton1) 715 | 716 | # [1.6](https://github.com/tj-actions/coverage-badge-py/compare/v1.5...v1.6) - (2021-05-08) 717 | 718 | ## 🔄 Update 719 | 720 | - Update action.yml ([786077b](https://github.com/tj-actions/coverage-badge-py/commit/786077b81572723a796adaf34015dfaeea425c3b)) - (Tonye Jack) 721 | - Update tj-actions/github-changelog-generator action to v1.8 722 | ([8b4194b](https://github.com/tj-actions/coverage-badge-py/commit/8b4194b54a0b2c5d839ad3121e7ee554822f4660)) - (Renovate Bot) 723 | - Updated .github/workflows/auto-approve.yml ([a1ce654](https://github.com/tj-actions/coverage-badge-py/commit/a1ce654e542ca1619c533b9ec09dc74512af07cb)) - (Tonye Jack) 724 | - Updated renovate.json ([963bd5b](https://github.com/tj-actions/coverage-badge-py/commit/963bd5bbb584dbad15598d5893e07e905a4c0b68)) - (Tonye Jack) 725 | - Update tj-actions/github-changelog-generator action to v1.6 726 | ([acf3d63](https://github.com/tj-actions/coverage-badge-py/commit/acf3d63676143d94d93c787d2b42b427be5484a6)) - (Renovate Bot) 727 | - Update test.yml ([77d10fb](https://github.com/tj-actions/coverage-badge-py/commit/77d10fba419d063456a30db6105369e720698839)) - (Tonye Jack) 728 | 729 | ## 📝 Other 730 | 731 | - PR [#12](https://github.com/tj-actions/coverage-badge-py/pull/12): to GitHub-native Dependabot ([a9a9147](https://github.com/tj-actions/coverage-badge-py/commit/a9a9147fd7773f62d02e987c3b080c5985fc03b9)) - (Tonye Jack) 732 | - PR [#9](https://github.com/tj-actions/coverage-badge-py/pull/9): ([701bc50](https://github.com/tj-actions/coverage-badge-py/commit/701bc505bfc47394fde9075073abebdc8f3d7790)) - (Tonye Jack) 733 | 734 | ## ⬆️ Upgrades 735 | 736 | - Upgrade to GitHub-native Dependabot ([84a59a0](https://github.com/tj-actions/coverage-badge-py/commit/84a59a03c780c7eb0b9d601be2f1c5ca93864793)) - (dependabot-preview[bot]) 737 | - Upgraded from v1.4 -> v1.5 738 | ([14dafde](https://github.com/tj-actions/coverage-badge-py/commit/14dafded653b43469b982d2f57145e5a8d1ec0b9)) - (jackton1) 739 | 740 | # [1.5](https://github.com/tj-actions/coverage-badge-py/compare/v1.4...v1.5) - (2021-04-23) 741 | 742 | ## ➕ Add 743 | 744 | - Added .github/ISSUE_TEMPLATE/feature_request.md ([844cae4](https://github.com/tj-actions/coverage-badge-py/commit/844cae420c6bb04f6fa26350cf1532ffc4627255)) - (Tonye Jack) 745 | - Added .github/ISSUE_TEMPLATE/bug_report.md ([a6a4b8e](https://github.com/tj-actions/coverage-badge-py/commit/a6a4b8e1d0996bfb0d800c1ae183472176083269)) - (Tonye Jack) 746 | 747 | ## ➖ Remove 748 | 749 | - Deleted .github/ISSUE_TEMPLATE.md ([17b5481](https://github.com/tj-actions/coverage-badge-py/commit/17b5481f15d90d4f49ab93d3f14ac433eaef2f28)) - (Tonye Jack) 750 | 751 | ## 🔄 Update 752 | 753 | - Update action.yml ([8db51fc](https://github.com/tj-actions/coverage-badge-py/commit/8db51fc5ba366d46cdd6fe5a8d0e13a8da3fdbc7)) - (Tonye Jack) 754 | - Update action.yml ([c17988d](https://github.com/tj-actions/coverage-badge-py/commit/c17988d4105eaafd97c7bd37f2276ebefe1aa003)) - (Tonye Jack) 755 | - Updated renovate.json ([3c0853c](https://github.com/tj-actions/coverage-badge-py/commit/3c0853cfa47e189f3d717a941bde7434b52cab2c)) - (Tonye Jack) 756 | - Update README.md ([da55622](https://github.com/tj-actions/coverage-badge-py/commit/da556224186902e5c79dd3fb8d5cb6fb6c08facd)) - (Tonye Jack) 757 | - Updated .github/workflows/sync-release-version.yml ([9930889](https://github.com/tj-actions/coverage-badge-py/commit/99308898978565ee226555476c0fa7ecb2ff2657)) - (Tonye Jack) 758 | 759 | ## 📝 Other 760 | 761 | - PR [#7](https://github.com/tj-actions/coverage-badge-py/pull/7): to v1.4 ([3637617](https://github.com/tj-actions/coverage-badge-py/commit/3637617e4c22568112f37d265b21607f3b46f1d8)) - (Tonye Jack) 762 | 763 | ## ⬆️ Upgrades 764 | 765 | - Upgraded from v1.3 -> v1.4 766 | ([8694a00](https://github.com/tj-actions/coverage-badge-py/commit/8694a003c4664db2d32684acf0909769614431ba)) - (jackton1) 767 | 768 | # [1.4](https://github.com/tj-actions/coverage-badge-py/compare/v1.3...v1.4) - (2021-04-04) 769 | 770 | ## 🔄 Update 771 | 772 | - Update action.yml ([545cccc](https://github.com/tj-actions/coverage-badge-py/commit/545ccccfd2b4b9944fb6383183dd7d45f96c72f3)) - (Tonye Jack) 773 | 774 | ## 📝 Other 775 | 776 | - PR [#6](https://github.com/tj-actions/coverage-badge-py/pull/6): to v1.3 ([526c5a4](https://github.com/tj-actions/coverage-badge-py/commit/526c5a41c0c4ab4bab0761de767e13ffeb2692ab)) - (Tonye Jack) 777 | - PR [#5](https://github.com/tj-actions/coverage-badge-py/pull/5): to v1.2 ([f3cdcae](https://github.com/tj-actions/coverage-badge-py/commit/f3cdcaeedd74c47ae3dd5fcf8792f986bb3583ab)) - (Tonye Jack) 778 | 779 | ## ⬆️ Upgrades 780 | 781 | - Upgraded from v1.2 -> v1.3 782 | ([d8cd2ed](https://github.com/tj-actions/coverage-badge-py/commit/d8cd2edf7511c25409d5991ed5b24b3bf0c36b56)) - (jackton1) 783 | - Upgraded from v1.1 -> v1.2 784 | ([49b1358](https://github.com/tj-actions/coverage-badge-py/commit/49b13587ba16a42d06eae43e9a1805fd04c4e0c6)) - (jackton1) 785 | 786 | # [1.3](https://github.com/tj-actions/coverage-badge-py/compare/v1.2...v1.3) - (2021-04-04) 787 | 788 | ## ➖ Remove 789 | 790 | - Delete entrypoint.sh ([d56845c](https://github.com/tj-actions/coverage-badge-py/commit/d56845cbac0284c0f90b07cd55e2b7f209247bd4)) - (Tonye Jack) 791 | 792 | ## 🔄 Update 793 | 794 | - Update action.yml ([1f55c86](https://github.com/tj-actions/coverage-badge-py/commit/1f55c86eea8b2b3c4265d29c38d01d2bb6b1f827)) - (Tonye Jack) 795 | 796 | # [1.2](https://github.com/tj-actions/coverage-badge-py/compare/v1.1...v1.2) - (2021-04-04) 797 | 798 | ## 🔄 Update 799 | 800 | - Update python Docker tag to v3.9.3 801 | ([f708766](https://github.com/tj-actions/coverage-badge-py/commit/f7087663896a51455690ec6cb789a4929b6dddb4)) - (Renovate Bot) 802 | - Update README.md ([425a943](https://github.com/tj-actions/coverage-badge-py/commit/425a9438084c3d2ce7b4017dd0c08f2889c91ef5)) - (Tonye Jack) 803 | - Updated .github/workflows/sync-release-version.yml ([b483a46](https://github.com/tj-actions/coverage-badge-py/commit/b483a463ca3dab68ea5a161f79363addcc1a7602)) - (Tonye Jack) 804 | 805 | ## 📝 Other 806 | 807 | - Merge branch 'main' of https://github.com/tj-actions/coverage-badge-py into main 808 | ([33d4d66](https://github.com/tj-actions/coverage-badge-py/commit/33d4d668226609defd03c71bb7c3058b4b6fabcc)) - (Tonye Jack) 809 | - PR [#4](https://github.com/tj-actions/coverage-badge-py/pull/4): python Docker tag to v3.9.3 ([a51b2c9](https://github.com/tj-actions/coverage-badge-py/commit/a51b2c98e74f9146ecd207565cf3d0b113379683)) - (Tonye Jack) 810 | - PR [#3](https://github.com/tj-actions/coverage-badge-py/pull/3): to v1.1 ([6be1b0b](https://github.com/tj-actions/coverage-badge-py/commit/6be1b0b9166b6dc174b7255a3007480b974d8454)) - (Tonye Jack) 811 | 812 | ## ⬆️ Upgrades 813 | 814 | - Upgraded from v1 -> v1.1 815 | ([85cceaf](https://github.com/tj-actions/coverage-badge-py/commit/85cceaff2fc497cce17fcd2e83ee5c3015c62569)) - (jackton1) 816 | 817 | # [1.1](https://github.com/tj-actions/coverage-badge-py/compare/v1...v1.1) - (2021-03-30) 818 | 819 | ## ➕ Add 820 | 821 | - Add renovate.json 822 | ([21d6594](https://github.com/tj-actions/coverage-badge-py/commit/21d6594af5bcd3f408b1eae02b09ba20d33fed0a)) - (Renovate Bot) 823 | - Added .github/auto-approve.yml ([99cbe6c](https://github.com/tj-actions/coverage-badge-py/commit/99cbe6c48ce7cdcca5f5956c26e2000bfcd7ff08)) - (Tonye Jack) 824 | - Added .github/workflows/auto-approve.yml ([50f9524](https://github.com/tj-actions/coverage-badge-py/commit/50f95243ac1caf65beccf2e350eaf6aceb4ca244)) - (Tonye Jack) 825 | - Create FUNDING.yml ([8beb8bb](https://github.com/tj-actions/coverage-badge-py/commit/8beb8bb87b02e68717da4d4a7e4f6622506f38e8)) - (Tonye Jack) 826 | 827 | ## ➖ Remove 828 | 829 | - Deleted .github/auto-approve.yml ([83d32ea](https://github.com/tj-actions/coverage-badge-py/commit/83d32ead389aa3ba1a7c55f9d2fdc1c62f428577)) - (Tonye Jack) 830 | 831 | ## 🔄 Update 832 | 833 | - Update sync-release-version.yml ([f4956b8](https://github.com/tj-actions/coverage-badge-py/commit/f4956b81b0d5c580bda64b7db782c27a99b0a5a5)) - (Tonye Jack) 834 | - Update action.yml ([e79b0cd](https://github.com/tj-actions/coverage-badge-py/commit/e79b0cdaa329e475e84cb69069b66c11ef46bfa0)) - (Tonye Jack) 835 | - Update action.yml ([fd6f97e](https://github.com/tj-actions/coverage-badge-py/commit/fd6f97edf3246505a4ed4b0e9a5203956fc6ef27)) - (Tonye Jack) 836 | - Update README.md ([b6b9080](https://github.com/tj-actions/coverage-badge-py/commit/b6b9080b05e998f27057675252887c4caaa5071d)) - (Tonye Jack) 837 | - Update README.md ([6d63e76](https://github.com/tj-actions/coverage-badge-py/commit/6d63e7660de6d23a4b34623890a9ead242b230bb)) - (Tonye Jack) 838 | - Update action.yml ([e093957](https://github.com/tj-actions/coverage-badge-py/commit/e093957188586fb14771029cc68e23635dad8481)) - (Tonye Jack) 839 | - Update action.yml ([2ab4c9e](https://github.com/tj-actions/coverage-badge-py/commit/2ab4c9e243b031566508499cd2ccb7809d3f76a3)) - (Tonye Jack) 840 | - Update README.md ([c2b52be](https://github.com/tj-actions/coverage-badge-py/commit/c2b52be6b4d03cbc17f265c06974e481adbbb8f7)) - (Tonye Jack) 841 | - Update README.md ([d7b4130](https://github.com/tj-actions/coverage-badge-py/commit/d7b413023d30fd7bb18ee2e8bb91bb31d274e08f)) - (Tonye Jack) 842 | - Update README.md ([e463e0f](https://github.com/tj-actions/coverage-badge-py/commit/e463e0fb37c7890a4df7cb5e50db119df17ce764)) - (Tonye Jack) 843 | - Updated .github/workflows/auto-approve.yml ([9ab63cc](https://github.com/tj-actions/coverage-badge-py/commit/9ab63cc1e00d7326ed0ac8ae11ef9a4ab90b6f0f)) - (Tonye Jack) 844 | - Update README.md ([ef92110](https://github.com/tj-actions/coverage-badge-py/commit/ef921101148386f9cc8f1f9e1e60c25e7d213d1a)) - (Tonye Jack) 845 | - Updated .github/FUNDING.yml ([c10f627](https://github.com/tj-actions/coverage-badge-py/commit/c10f627b73d0220eb0208084399f7ba2fe1c15fe)) - (Tonye Jack) 846 | - Update README.md ([5df2a61](https://github.com/tj-actions/coverage-badge-py/commit/5df2a61578f1a51a26e5e704d48af2205c83322b)) - (Tonye Jack) 847 | 848 | ## 📝 Other 849 | 850 | - PR [#2](https://github.com/tj-actions/coverage-badge-py/pull/2): Renovate ([9094286](https://github.com/tj-actions/coverage-badge-py/commit/90942861d99a1c89ee008d74cb9f9649de6540fc)) - (Tonye Jack) 851 | - PR [#1](https://github.com/tj-actions/coverage-badge-py/pull/1): to ([47e50f7](https://github.com/tj-actions/coverage-badge-py/commit/47e50f73fa9e4d856cc9b20f3000a1c9ab366e1f)) - (Tonye Jack) 852 | 853 | ## ⬆️ Upgrades 854 | 855 | - Upgraded from -> 856 | ([b058185](https://github.com/tj-actions/coverage-badge-py/commit/b058185fa40159440d04087c91e16a3352a2cd9f)) - (jackton1) 857 | 858 | # [1](https://github.com/tj-actions/coverage-badge-py/tree/v1) - (2021-03-25) 859 | 860 | ## 🐛 Bug Fixes 861 | 862 | - Fixed test. 863 | ([9e73b91](https://github.com/tj-actions/coverage-badge-py/commit/9e73b91993d89d8697f850b19abe108270c782f9)) - (Tonye Jack) 864 | - Fixed test. 865 | ([01be8f7](https://github.com/tj-actions/coverage-badge-py/commit/01be8f796db6acbfe630944c74b5219d953230a4)) - (Tonye Jack) 866 | 867 | ## 🎉 Initial Commit 868 | 869 | - Initial commit 870 | ([9a71d8b](https://github.com/tj-actions/coverage-badge-py/commit/9a71d8b2395ec6eaf55f510ce22b1a3fe4085d90)) - (Tonye Jack) 871 | 872 | ## ➕ Add 873 | 874 | - Added a sample coverage report. 875 | ([67965e5](https://github.com/tj-actions/coverage-badge-py/commit/67965e5272ac23d27f1909228f22b859e4dddc5d)) - (Tonye Jack) 876 | 877 | ## ➖ Remove 878 | 879 | - Delete .coverage ([b86362d](https://github.com/tj-actions/coverage-badge-py/commit/b86362d46a0c30a219af636fbf284be8fa2b246f)) - (Tonye Jack) 880 | 881 | ## 🔄 Update 882 | 883 | - Update README.md ([b2c0b9f](https://github.com/tj-actions/coverage-badge-py/commit/b2c0b9f294f32f986c809f3aace3950e93fab0ed)) - (Tonye Jack) 884 | - Update README.md ([997e093](https://github.com/tj-actions/coverage-badge-py/commit/997e0935a28baf645ae14d0b5ac860132afa0bb9)) - (Tonye Jack) 885 | - Update test.yml ([ac1d6f6](https://github.com/tj-actions/coverage-badge-py/commit/ac1d6f67ab4accdf26d4de1c2b876c322ca0fcdd)) - (Tonye Jack) 886 | - Update README.md ([95cfdb5](https://github.com/tj-actions/coverage-badge-py/commit/95cfdb5f0f5c01a03797fc943d0bc2e4425fe66c)) - (Tonye Jack) 887 | - Update README.md ([8a6f0f7](https://github.com/tj-actions/coverage-badge-py/commit/8a6f0f754be06cb5227b28702b24ab7e02a4e24e)) - (Tonye Jack) 888 | - Update README.md ([82b1439](https://github.com/tj-actions/coverage-badge-py/commit/82b14392e8ee2784034f779bb4cf5bba9179963f)) - (Tonye Jack) 889 | - Updated README and coverage data. 890 | ([5e5427d](https://github.com/tj-actions/coverage-badge-py/commit/5e5427d7e7fd7a433449b4b015ddf3452c584c03)) - (Tonye Jack) 891 | - Updated README.md. 892 | ([8326edc](https://github.com/tj-actions/coverage-badge-py/commit/8326edca020eb821bdb03173931afe7a4c73f99c)) - (Tonye Jack) 893 | - Updated action. 894 | ([883b98c](https://github.com/tj-actions/coverage-badge-py/commit/883b98c92e1454ac6d6cdd095a7b2d78a6427a39)) - (Tonye Jack) 895 | - Update README.md ([4d22717](https://github.com/tj-actions/coverage-badge-py/commit/4d2271794d1e5120a2dd3b9e407e75e4c2137254)) - (Tonye Jack) 896 | 897 | ## 📝 Other 898 | 899 | - Switched to using a composite action. 900 | ([5efb538](https://github.com/tj-actions/coverage-badge-py/commit/5efb538f234fe2207f6325cde7712bb5ee50da2c)) - (Tonye Jack) 901 | - Merge branch 'main' of https://github.com/tj-actions/coverage-badge-py into main 902 | ([6bc2aae](https://github.com/tj-actions/coverage-badge-py/commit/6bc2aaeeafc03ee8dc2ac1f9f4fe9e698843c609)) - (Tonye Jack) 903 | 904 | 905 | --------------------------------------------------------------------------------