8000 verify: @boozilla/homebridge-shome · homebridge/plugins@78832ec · GitHub
[go: up one dir, main page]

Skip to content

Verification Request: homebridge-exivo #2016

Verification Request: homebridge-exivo

Verification Request: homebridge-exivo #2016

Workflow file for this run

name: Issue Labeler
on:
issue_comment:
types:
- created
jobs:
review_add_label:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check if comment starts with /check
id: check-command
run: |
FIRST_LINE=$(echo "${{ github.event.comment.body }}" | head -n 1 | tr -d ' \t\r')
if [[ "$FIRST_LINE" == "/check" ]]; then
echo "is_check_command=true" >> $GITHUB_OUTPUT
else
echo "is_check_command=false" >> $GITHUB_OUTPUT
fi
- uses: actions-ecosystem/action-add-labels@v1
if: ${{ steps.check-command.outputs.is_check_command == 'true' && contains(github.event.issue.labels.*.name, 'request-verification') }}
with:
labels: pending
review_remove_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check if comment starts with /check
id: check-command
run: |
FIRST_LINE=$(echo "${{ github.event.comment.body }}" | head -n 1 | tr -d ' \t\r')
if [[ "$FIRST_LINE" == "/check" ]]; then
echo "is_check_command=true" >> $GITHUB_OUTPUT
else
echo "is_check_command=false" >> $GITHUB_OUTPUT
fi
- uses: actions-ecosystem/action-remove-labels@v1
if: ${{ steps.check-command.outputs.is_check_command == 'true' && contains(github.event.issue.labels.*.name, 'request-verification') }}
with:
github_token: ${{ secrets.github_token }}
labels: |
awaiting-changes
awaiting-user-reply
verified
currently-reviewing
0