mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-09-03 12:40:44 +02:00
31 lines
659 B
YAML
31 lines
659 B
YAML
# This workflow is triggered when code is pushed to a pull request. It runs the reusable detector label workflow.
|
|
|
|
name: PR Synchronize Trigger
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- synchronize
|
|
|
|
permissions:
|
|
actions: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
detector-labels:
|
|
uses: ./.github/workflows/pr_detector_labels.yaml
|
|
with:
|
|
pr_number: ${{ github.event.pull_request.number }}
|
|
permissions:
|
|
pull-requests: write
|
|
issues: read
|
|
|
|
file-version:
|
|
uses: ./.github/workflows/pr_file_version.yaml
|
|
with:
|
|
pr_number: ${{ github.event.pull_request.number }}
|
|
permissions:
|
|
pull-requests: write
|
|
contents: read
|
|
|