Skip to content

Commit

Permalink
Merge pull request #41996 from qgis/m-kuhn-patch-1
Browse files Browse the repository at this point in the history
Remove "stale" label when a comment is added
  • Loading branch information
m-kuhn committed Mar 19, 2021
2 parents 0b75c6c + 89446db commit f79d18f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/unstale.yml
@@ -0,0 +1,15 @@
name: Remove Labels

on: [issue_comment]

jobs:
remove_labels:
if: contains(github.event.issue.labels.*.name, 'stale')
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-remove-labels@v1
if: ${{ github.event.comment.user.url != 'https://github.com/apps/github-actions' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: |
stale

0 comments on commit f79d18f

Please sign in to comment.