Files @ r27935:8fbfc030e7be
Branch filter:

Location: cpp/openttd-patchpack/source/.github/workflows/preview.yml

PeterN
Fix: Don't produce invalid cargo. (#11314)

Production for secondary industries did not always check that the produced cargo type isn't valid.
name: Preview

on:
  pull_request_target:
    types:
    - labeled
    - synchronize
    branches:
    - master

concurrency:
  group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
  cancel-in-progress: true

jobs:
  preview:
    if: ${{ (github.event.action == 'labeled' && github.event.label.name == 'preview') || (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'preview')) }}
    name: Preview
    uses: ./.github/workflows/preview-build.yml
    secrets: inherit