Publish Test Results #773
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: Publish Test Results | |
on: | |
workflow_run: | |
workflows: [Test code] | |
types: [completed] | |
jobs: | |
publish-test-results: | |
uses: ./.github/workflows/_reusable-publish-test-results.yml | |
with: | |
operating-systems-array: '["ubuntu", "windows", "macos"]' # this needs to match the operating-systems-array in the test-code.yml file | |
permissions: | |
checks: write | |
pull-requests: write |