-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4d1479
commit bfcbc3b
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,29 @@ jobs: | |
with: | ||
name: pitest-reports | ||
path: ./target/pit-reports-ci | ||
|
||
# XXX: Drop the job below. Here only for testing purposes. | ||
update-pr: | ||
permissions: | ||
actions: read | ||
checks: write | ||
contents: read | ||
pull-requests: write | ||
needs: analyze-pr | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
cache: maven | ||
- name: Download Pitest analysis artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: pitest-reports | ||
path: ./target/pit-reports-ci | ||
- name: Update PR | ||
run: mvn -DrepoToken="${{ secrets.GITHUB_TOKEN }}" pitest-github:updatePR |
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