blob: 000578b9bd2bc87a005e766785053da49e8a1c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
name: Check label
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]
jobs:
check_label:
uses: ansible/ansible-content-actions/.github/workflows/check_label.yaml@main
|