mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
31 lines
992 B
YAML
31 lines
992 B
YAML
name: Auto-label new issues
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
add-triage:
|
|
if: github.event.issue.pull_request == null
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Add triage label for external authors
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
GH_REPO: ${{ github.repository }}
|
|
NUMBER: ${{ github.event.issue.number }}
|
|
AUTHOR: ${{ github.event.issue.user.login }}
|
|
run: |
|
|
internal=(decepulis mihar-22 luwes sampotts cjpillsbury heff esbie r-delfino95 ronald-urbina ronalduqualabs jerricho93 spuppo-mux)
|
|
author_lc="${AUTHOR,,}"
|
|
for handle in "${internal[@]}"; do
|
|
if [[ "$author_lc" == "$handle" ]]; then
|
|
echo "Author $AUTHOR is internal; skipping triage label."
|
|
exit 0
|
|
fi
|
|
done
|
|
echo "Author $AUTHOR is external; adding triage label."
|
|
gh issue edit "$NUMBER" --add-label triage
|