chore: switch to slog #303
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
name: Validate Pull Request | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
jobs: | |
required-labels-missing: | |
name: required labels missing | |
runs-on: ubuntu-latest | |
steps: | |
- name: check | |
if: >- | |
!contains(github.event.pull_request.labels.*.name, '💥 breaking-change') | |
&& !contains(github.event.pull_request.labels.*.name, '✨ enhancement') | |
&& !contains(github.event.pull_request.labels.*.name, '🐞 bug') | |
&& !contains(github.event.pull_request.labels.*.name, '📖 docs') | |
&& !contains(github.event.pull_request.labels.*.name, 'chore') | |
&& !contains(github.event.pull_request.labels.*.name, '🛠️ dependencies') | |
run: >- | |
echo One of the following labels is missing on this PR: | |
breaking-change | |
enhancement | |
bug | |
docs | |
chore | |
&& exit 1 | |
title: | |
name: check title prefix | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: check | |
run: | | |
PR_TITLE_PREFIX=$(echo "$PR_TITLE" | cut -d':' -f1) | |
if [[ -d "pkg/collector/$PR_TITLE_PREFIX" ]] ||[[ -d "pkg/$PR_TITLE_PREFIX" ]] || [[ -d "$PR_TITLE_PREFIX" ]] || [[ "$PR_TITLE_PREFIX" == "chore" ]] || [[ "$PR_TITLE_PREFIX" == "chore(docs)" ]] || [[ "$PR_TITLE_PREFIX" == "chore(deps)" ]] || [[ "$PR_TITLE_PREFIX" == "*" ]] || [[ "$PR_TITLE_PREFIX" == "Synchronize common files from prometheus/prometheus" ]]; then | |
exit 0 | |
fi | |
echo "PR title must start with an name of an collector package" | |
echo "Example: 'logical_disk: description'" | |
exit 1 | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} |