# Objective - next step for #15918 ## Solution - Move jobs for macOS, Linux and Windows to their own workflow - Remove running on push to `main` from workflows CI and validation
78 lines
2.6 KiB
YAML
78 lines
2.6 KiB
YAML
name: Example Run - PR Comments
|
|
|
|
# This workflow has write permissions on the repo
|
|
# It must not checkout a PR and run untrusted code
|
|
|
|
# Also requesting write permissions on PR to be able to comment
|
|
permissions:
|
|
pull-requests: "write"
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Example Run"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
make-macos-screenshots-available:
|
|
if: github.event.workflow_run.event == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
outputs:
|
|
branch-name: ${{ steps.branch-name.outputs.result }}
|
|
steps:
|
|
- name: "Download artifact"
|
|
id: find-artifact
|
|
uses: actions/github-script@v7
|
|
with:
|
|
result-encoding: string
|
|
script: |
|
|
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
run_id: ${{github.event.workflow_run.id }},
|
|
});
|
|
var matchArtifacts = artifacts.data.artifacts.filter((artifact) => {
|
|
return artifact.name == "screenshots-macos"
|
|
});
|
|
if (matchArtifacts.length == 0) { return "false" }
|
|
var matchArtifact = matchArtifacts[0];
|
|
var download = await github.rest.actions.downloadArtifact({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
artifact_id: matchArtifact.id,
|
|
archive_format: 'zip',
|
|
});
|
|
var fs = require('fs');
|
|
fs.writeFileSync('${{github.workspace}}/screenshots-macos.zip', Buffer.from(download.data));
|
|
return "true"
|
|
- name: prepare artifact folder
|
|
run: |
|
|
unzip screenshots-macos.zip
|
|
mkdir screenshots
|
|
mv screenshots-* screenshots/
|
|
- name: save screenshots
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: screenshots-macos
|
|
path: screenshots
|
|
- name: branch name
|
|
id: branch-name
|
|
run: |
|
|
if [ -f PR ]; then
|
|
echo "result=PR-$(cat PR)-${{ github.event.workflow_run.head_branch }}" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "result=${{ github.event.workflow_run.head_branch }}" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
compare-macos-screenshots:
|
|
name: Compare macOS screenshots
|
|
needs: [make-macos-screenshots-available]
|
|
uses: ./.github/workflows/send-screenshots-to-pixeleagle.yml
|
|
with:
|
|
commit: ${{ github.event.workflow_run.head_sha }}
|
|
branch: ${{ needs.make-macos-screenshots-available.outputs.branch-name }}
|
|
artifact: screenshots-macos
|
|
os: macos
|
|
secrets: inherit
|