mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
423 B
YAML
15 lines
423 B
YAML
name: Pending Author Response Label
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
jobs:
|
|
issue_commented:
|
|
if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending-response') }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: siegerts/pending-author-response@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
pending-response-label: pending-response
|