53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
# Copyright 2024 The Forgejo Authors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
name: issue-labels
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- labeled
|
|
- edited
|
|
- opened
|
|
|
|
jobs:
|
|
merge-conditions:
|
|
if: >
|
|
vars.ROLE == 'forgejo-coding' &&
|
|
|
|
github.event_name == 'pull_request' &&
|
|
(
|
|
github.event.action == 'label_updated' ||
|
|
github.event.action == 'edited' ||
|
|
github.event.action == 'opened'
|
|
)
|
|
runs-on: docker
|
|
container:
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
|
steps:
|
|
- name: Debug info
|
|
run: |
|
|
cat <<'EOF'
|
|
${{ toJSON(github) }}
|
|
EOF
|
|
- name: Missing test label
|
|
if: >
|
|
!(
|
|
contains(toJSON(github.event.pull_request.labels), 'test/present')
|
|
|| contains(toJSON(github.event.pull_request.labels), 'test/not-needed')
|
|
|| contains(toJSON(github.event.pull_request.labels), 'test/manual')
|
|
)
|
|
run: |
|
|
echo "Test label must be set to either 'present', 'not-needed' or 'manual'."
|
|
exit 1
|
|
- name: Missing manual test instructions
|
|
if: >
|
|
(
|
|
contains(toJSON(github.event.pull_request.labels), 'test/manual')
|
|
&& !contains(toJSON(github.event.pull_request.body), '# Test')
|
|
)
|
|
run: |
|
|
echo "Manual test label is set. The PR description needs to contain test steps introduced by a heading like:"
|
|
echo "# Testing"
|
|
exit 1
|