mirror of
https://github.com/apple/pkl.git
synced 2026-01-16 08:26:56 +01:00
Bumps [EnricoMi/publish-unit-test-result-action](https://github.com/enricomi/publish-unit-test-result-action) from 2.21.0 to 2.22.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/enricomi/publish-unit-test-result-action/releases">EnricoMi/publish-unit-test-result-action's releases</a>.</em></p> <blockquote> <h2>v2.22.0</h2> <p>Adds the following improvements:</p> <ul> <li>Upgrade all Python dependencies to latest version <a href="https://redirect.github.com/enricomi/publish-unit-test-result-action/issues/710">#710</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/EnricoMi/publish-unit-test-result-action/compare/v2.21.0...v2.22.0">https://github.com/EnricoMi/publish-unit-test-result-action/compare/v2.21.0...v2.22.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="27d65e188e"><code>27d65e1</code></a> Releasing v2.22.0</li> <li><a href="2deae407d7"><code>2deae40</code></a> Upgrade transient dependencies (<a href="https://redirect.github.com/enricomi/publish-unit-test-result-action/issues/710">#710</a>)</li> <li><a href="a6d8f3d6ca"><code>a6d8f3d</code></a> Add Ubuntu slim runner (<a href="https://redirect.github.com/enricomi/publish-unit-test-result-action/issues/709">#709</a>)</li> <li><a href="d3ed9acf9b"><code>d3ed9ac</code></a> CI: Merge check upgrades jobs into single job (<a href="https://redirect.github.com/enricomi/publish-unit-test-result-action/issues/700">#700</a>)</li> <li>See full diff in <a href="34d7c956a5...27d65e188e">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
1.1 KiB
YAML
Generated
35 lines
1.1 KiB
YAML
Generated
# Generated from Workflow.pkl. DO NOT EDIT.
|
|
name: PR Test Reports
|
|
'on':
|
|
workflow_run:
|
|
types:
|
|
- completed
|
|
workflows:
|
|
- Pull Request
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
test-results:
|
|
name: Test Results
|
|
if: github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure'
|
|
permissions:
|
|
actions: read
|
|
checks: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: dawidd6/action-download-artifact@ac66b43f0e6a346234dd65d4d0c8fbb31cb316e5 # v11
|
|
with:
|
|
path: artifacts
|
|
name: test-results-.*
|
|
name_is_regexp: true
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
- name: Publish test results
|
|
uses: EnricoMi/publish-unit-test-result-action@27d65e188ec43221b20d26de30f4892fad91df2f # v2
|
|
with:
|
|
commit: ${{ github.event.workflow_run.head_sha }}
|
|
comment_mode: 'off'
|
|
files: artifacts/**/*.xml
|
|
event_file: artifacts/test-results-event-file/event.json
|
|
event_name: ${{ github.event.workflow_run.event }}
|