Skip to content

Fix the UI error issues caused by adjustments to the batching and splitting of UI elements. #5952

Fix the UI error issues caused by adjustments to the batching and splitting of UI elements.

Fix the UI error issues caused by adjustments to the batching and splitting of UI elements. #5952

name: automation-labels
on:
pull_request_target:
types: [opened]
jobs:
automate-labels:
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- name: Check organization
id: get_check_code
env:
user: ${{ github.event.pull_request.user.login }}
run: |
http_code=`curl -s --head -I -H "Authorization: token ${{ secrets.LABEl_TOKEN }}" -H "Accept: application/vnd.github.v3+json" https://api.github.com/orgs/cocos/members/$user | awk '/HTTP/{print $2}'`
echo "::set-output name=http_code::${http_code}"
- name: Add contribution label
if: |
steps.get_check_code.outputs.http_code == 404
uses: OperationsYU/labeler@master
with:
add-labels: "contribution"
- name: assignment
if: |
steps.get_check_code.outputs.http_code == 404
uses: OperationsYU/auto-assignment@v1
with:
token: ${{ secrets.LABEl_TOKEN }}
users: '["minggo"]'