Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 9ca9aee

Browse files
authored
Merge pull request #1839 from ndeloof/pending_label
automation to remove pending label on new comment
2 parents 98a781f + 1fed4dd commit 9ca9aee

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Continuous integration
2+
3+
on:
4+
issue_comment:
5+
types: [ created ]
6+
7+
jobs:
8+
pending:
9+
if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending') }}
10+
name: Remove pending label
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: removelabel
14+
uses: siegerts/pending-response@v1
15+
with:
16+
github-token: ${{ secrets.GITHUB_TOKEN }}
17+
pending-response-label: pending

0 commit comments

Comments
 (0)