ci: Switch pull_request_target to pull_request #96
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
# Copyright 2021 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# A workflow test PRs by building fresh binaries. | |
name: Test | |
# Runs when a PR is uploaded or revised. Builds ffmpeg and ffprobe on all OS & | |
# CPU combinations. | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
# If another instance of this workflow is started for the same PR, cancel the | |
# old one. If a PR is updated and a new test run is started, the old test run | |
# will be cancelled automatically to conserve resources. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }} | |
cancel-in-progress: true | |
# NOTE: Create an environment called "debug" to enable debugging via tmate on | |
# failure. | |
# NOTE: Create an environment called "self_hosted" to enable self-hosted | |
# runners from build-matrix.json. | |
jobs: | |
settings: | |
name: Settings | |
uses: ./.github/workflows/settings.yaml | |
build: | |
needs: settings | |
uses: ./.github/workflows/build.yaml | |
with: | |
ref: refs/pull/${{ github.event.number }}/merge | |
self_hosted: ${{ needs.settings.outputs.self_hosted != '' }} | |
debug: ${{ needs.settings.outputs.debug != '' }} |