refactor(gclient): removed filtering static pages while creating memory dump #1903
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: Label | |
on: | |
pull_request: | |
branches: [master] | |
types: [labeled] | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
if: >- | |
github.event.label.name == 'A0-pleasereview' | |
|| github.event.label.name == 'A4-insubstantial' | |
|| github.event.label.name == 'A2-mergeoncegreen' | |
|| github.event.label.name == 'E1-forcenatwin' | |
|| github.event.label.name == 'E2-forcemacos' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fork Linux checks | |
if: >- | |
github.event.label.name == 'A0-pleasereview' | |
|| github.event.label.name == 'A4-insubstantial' | |
|| github.event.label.name == 'A2-mergeoncegreen' | |
uses: gear-tech/fork-action@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
workflow_id: ".github/workflows/build.yml" | |
prefix: "build" | |
jobs: '["linux", "win-cross"]' | |
useMulti: true | |
inputs: '{ | |
"title": "${{ github.event.pull_request.title }}", | |
"number": "${{ github.event.number }}" | |
}' | |
- name: Fork OSX checks | |
if: github.event.label.name == 'E2-forcemacos' | |
uses: gear-tech/fork-action@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
workflow_id: ".github/workflows/build-macos.yml" | |
prefix: "build" | |
jobs: '[ "macos-x86", "macos-aarch64" ]' | |
useProfiles: true | |
- name: Fork Win checks | |
if: github.event.label.name == 'E1-forcenatwin' | |
uses: gear-tech/fork-action@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
workflow_id: ".github/workflows/build-win-native.yml" | |
prefix: "build" | |
jobs: '[ "win-native" ]' | |
useProfiles: true |