Skip to content

Commit

Permalink
Merge branch 'alibaba:master' into useMutationObserver
Browse files Browse the repository at this point in the history
  • Loading branch information
li-jia-nan authored Jul 21, 2022
2 parents 8d10f08 + d95df1f commit 78602fd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/comment-when-needs-more-info.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Comment When Needs More Info Label Added

on:
issues:
types: [labeled]

jobs:
create-comment:
runs-on: ubuntu-latest
if: github.event.label.name == 'needs more info'
steps:
- name: Create comment
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Hi, ${{ github.event.issue.user.login }}.
It seems that this issue is a bit vague and lacks some necessary information.
看起来这条 issue 描述得有些模糊,缺少一些必要的信息。
1 change: 1 addition & 0 deletions packages/hooks/src/useRequest/src/Fetch.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-parameter-properties */
import { isFunction } from '../../utils';
import type { MutableRefObject } from 'react';
import type { FetchState, Options, PluginReturn, Service, Subscribe } from './types';
Expand Down

0 comments on commit 78602fd

Please sign in to comment.