ci: improved tags in pull-request #34
Workflow file for this run
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: "Test: PR" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
- 'prerelease/**' | |
jobs: | |
pr-tags: | |
runs-on: ubuntu-latest | |
outputs: | |
tags: ${{ steps.pr-tags.outputs.tags }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: 8BitJonny/[email protected] | |
id: PR | |
- run: echo "PR ${prNumber} ${prTitle} at ${prUrl} is ${prJSON}" | |
if: steps.PR.outputs.pr_found == 'true' | |
env: | |
# JSON object with the full PR object | |
# toJSON(fromJSON(...pr)) parses it into memory and then format is with pretty-print. | |
github-token: ${{ env.github-token }} | |
prJSON: ${{ toJSON(fromJSON(steps.PR.outputs.pr)) }} | |
# Direct access to common PR properties | |
prNumber: ${{ steps.PR.outputs.number }} | |
prUrl: ${{ steps.PR.outputs.pr_url }} | |
prTitle: ${{ steps.PR.outputs.pr_title }} | |
prBody: ${{ steps.PR.outputs.pr_body }} | |
prCreatedAt: ${{ steps.PR.outputs.pr_created_at }} | |
prMergedAt: ${{ steps.PR.outputs.pr_merged_at }} | |
prClosedAt: ${{ steps.PR.outputs.pr_closed_at }} | |
prLabel: ${{ steps.PR.outputs.pr_labels }} | |
- run: echo "${prBody}" | |
if: steps.PR.outputs.pr_found == 'true' | |
env: | |
# JSON object with the full PR object | |
# toJSON(fromJSON(...pr)) parses it into memory and then format is with pretty-print. | |
prJSON: ${{ toJSON(fromJSON(steps.PR.outputs.pr)) }} | |
# Direct access to common PR properties | |
prNumber: ${{ steps.PR.outputs.number }} | |
prUrl: ${{ steps.PR.outputs.pr_url }} | |
prTitle: ${{ steps.PR.outputs.pr_title }} | |
prBody: ${{ steps.PR.outputs.pr_body }} | |
prCreatedAt: ${{ steps.PR.outputs.pr_created_at }} | |
prMergedAt: ${{ steps.PR.outputs.pr_merged_at }} | |
prClosedAt: ${{ steps.PR.outputs.pr_closed_at }} | |
prLabel: ${{ steps.PR.outputs.pr_labels }} | |
github-token: ${{ env.github-token }} | |
- name: Parse Tags from PR Body | |
id: pr-tags | |
run: bash scripts/pr-tags-parse.sh "${{ github.event_path }}" | |
env: | |
prBody: ${{ steps.PR.outputs.pr_body }} | |
github-token: ${{ env.github-token }} | |
e2e-electron: | |
name: e2e | |
uses: ./.github/workflows/test-e2e-linux.yml | |
needs: pr-tags | |
with: | |
grep: ${{ needs.pr-tags.outputs.tags }} | |
display_name: "electron (linux)" | |
currents_tags: "pull-request,electron/linux,${{ needs.pr-tags.outputs.tags }}" | |
secrets: inherit | |
unit-tests: | |
name: test | |
uses: ./.github/workflows/test-unit.yml | |
secrets: inherit | |
integration-tests: | |
name: test | |
uses: ./.github/workflows/test-integration.yml | |
secrets: inherit | |