Skip to content

feat: Replace "Chinese (Simplified)" with "中文 (简体)","Chinese (Traditional)" with "中文 (繁体)" #204

feat: Replace "Chinese (Simplified)" with "中文 (简体)","Chinese (Traditional)" with "中文 (繁体)"

feat: Replace "Chinese (Simplified)" with "中文 (简体)","Chinese (Traditional)" with "中文 (繁体)" #204

Workflow file for this run

# This workflow removes the stale label from PRs and issues when a new comment is created
name: Remove stale label
on:
issue_comment:
types: [created]
jobs:
remove_stale:
if: contains(github.event.issue.labels.*.name, 'stale')
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Remove stale label
run: gh issue edit $ISSUE --remove-label $LABEL
env:
GITHUB_TOKEN: ${{ secrets.SELF_TOKEN }}
ISSUE: ${{ github.event.issue.number }}
LABEL: 'stale'