Skip to content

Update appveyor.yml #285

Update appveyor.yml

Update appveyor.yml #285

Workflow file for this run

name: Label based on PR size
on:
pull_request:
pull_request_target:
workflow_dispatch:
jobs:
size-label:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: size-label
if: >-
(
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == github.repository
) || (
github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.full_name != github.repository
) || (
github.event_name == 'workflow_dispatch'
)
uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"