hertz默认情况下,底层tcp连接数量是怎么控制的 #694
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Labeler" | |
on: | |
issues: | |
types: [ opened, edited, reopened ] | |
jobs: | |
triage: | |
if: contains(github.event.issue.labels.*.name, 'invalid issue') || join(github.event.issue.labels) == '' | |
runs-on: ubuntu-latest | |
name: Label issues | |
steps: | |
- name: check out | |
uses: actions/checkout@v3 | |
- name: labeler | |
uses: jbinda/super-labeler-action@develop | |
with: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |