We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24bb05c commit 03acf47Copy full SHA for 03acf47
.github/workflows/unstale.yml
@@ -0,0 +1,19 @@
1
+name: Unmark issues and pull requests as stale on activity
2
+on:
3
+ issue_comment:
4
+ types: [created]
5
+
6
+# actions/stale does this automatically, but only once a day.
7
+# This immediately removes the label when the user creates a comment.
8
+jobs:
9
+ remove-stale-label:
10
+ if: (github.repository == 'clojure-emacs/cider')
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ issues: write
14
+ pull-requests: write
15
+ steps:
16
+ - name: Remove stale label
17
+ env:
18
+ GH_TOKEN: ${{ github.token }}
19
+ run: gh issue edit ${{ github.event.issue.number }} --remove-label "stale" -R ${{ github.repository }}
0 commit comments