Merge pull request #47 from indic-amigo-akademi/dependabot/composer/l… #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Laravel Coverage Report" | |
on: | |
push: | |
branches: [main] | |
jobs: | |
laravel-coverage: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci]')" | |
steps: | |
- name: Make code coverage badge | |
uses: timkrase/[email protected] | |
with: | |
coverage_badge_path: output/coverage.svg | |
push_badge: false | |
- name: Git push to image-data branch | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
publish_dir: ./output | |
publish_branch: image-data | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
user_name: "github-actions[bot]" | |
user_email: "github-actions[bot]@users.noreply.github.com" |