Skip to content

[Enhancement]: Update the documentation to have all options for engine name #10025

[Enhancement]: Update the documentation to have all options for engine name

[Enhancement]: Update the documentation to have all options for engine name #10025

Workflow file for this run

name: Process issue_comment Events
on:
issue_comment:
types: [created]
permissions:
contents: read
issues: write
pull-requests: write
jobs:
labeler:
name: Labeler
runs-on: ubuntu-latest
if: contains(github.event.issue.labels.*.name, 'stale') || contains(github.event.issue.labels.*.name, 'waiting-response')
steps:
- name: Checkout Community Check
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
sparse-checkout: .github/actions/community_check
- name: Run Community Check
id: community_check
uses: ./.github/actions/community_check
with:
user_login: ${{ github.event.comment.user.login }}
maintainers: ${{ secrets.MAINTAINERS }}
- name: Remove stale and waiting-response
if: steps.community_check.outputs.maintainer == 'false'
env:
COMMAND: ${{ github.event.issue.pull_request && 'pr' || 'issue' }}
GH_TOKEN: ${{ github.token }}
run: gh $COMMAND edit ${{ github.event.issue.html_url }} --remove-label stale,waiting-response