mirror of
https://github.com/docker/compose.git
synced 2026-06-25 10:38:23 +00:00
Merge pull request #1839 from ndeloof/pending_label
automation to remove pending label on new comment
This commit is contained in:
commit
9ca9aee4f8
1 changed files with 17 additions and 0 deletions
17
.github/workflows/pending_answered.yml
vendored
Normal file
17
.github/workflows/pending_answered.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Continuous integration
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [ created ]
|
||||
|
||||
jobs:
|
||||
pending:
|
||||
if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending') }}
|
||||
name: Remove pending label
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: removelabel
|
||||
uses: siegerts/pending-response@v1
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pending-response-label: pending
|
||||
Loading…
Add table
Add a link
Reference in a new issue