Update coverage report #5
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: Update coverage report | |
run-name: "Update coverage report" | |
on: | |
workflow_dispatch: | |
push: | |
permissions: | |
contents: read | |
jobs: | |
Update-Coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Authenticate GitHub App | |
id: auth | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
# owner: ${{ github.repository_owner }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Update coverage report | |
shell: pwsh | |
run: | | |
. ".\scripts\coverage.ps1" | |
- name: Commit changes | |
shell: pwsh | |
run: | | |
git config --global user.email " |