不要怂,就是干,撸起袖子干!

Commit 3c1a420e by papb

meta: allow `meta` as commit scope

1 parent ac368c96
name: Auto-remove "awaiting response" label
on:
issue_comment:
types: [created]
jobs:
auto-remove-awaiting-response-label:
name: Run
runs-on: ubuntu-latest
env:
# Case insensitive. Replace spaces with `%20`.
LABEL_TO_REMOVE: "status:%20awaiting%20response"
steps:
- name: Run
run: |-
curl -X DELETE \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"${{ github.event.comment.issue_url }}/labels/$LABEL_TO_REMOVE"
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!