Mutation testing: post results #4002
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
# Updates a pull request based on the corresponding mutation testing analysis | |
# performed by the `pitest-analyze-pr.yml` workflow. See | |
# https://blog.pitest.org/oss-pitest-pr/ for details. | |
name: "Mutation testing: post results" | |
on: | |
workflow_run: | |
workflows: ["Mutation testing"] | |
types: | |
- completed | |
permissions: | |
actions: read | |
jobs: | |
update-pr: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
permissions: | |
actions: read | |
checks: write | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Install Harden-Runner | |
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.adoptium.net:443 | |
api.github.com:443 | |
github.com:443 | |
objects.githubusercontent.com:443 | |
repo.maven.apache.org:443 | |
- name: Check out code and set up JDK and Maven | |
uses: s4u/setup-maven-action@9a27433d289dd99d73851f653607c39d3444e8ba # v1.17.0 | |
with: | |
java-version: 17.0.13 | |
java-distribution: temurin | |
maven-version: 3.9.9 | |
- name: Download Pitest analysis artifact | |
uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe # v3.1.4 | |
with: | |
workflow: ${{ github.event.workflow_run.workflow_id }} | |
name: pitest-reports | |
path: ./target/pit-reports-ci | |
- name: Update PR | |
run: mvn -DrepoToken="${{ secrets.GITHUB_TOKEN }}" pitest-github:updatePR |