Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2021-01-29 22:24:55 +0300
committerAndrei Vagin <avagin@gmail.com>2021-09-03 20:31:00 +0300
commitda2c83d871c85f8f77d314354d8d7e3e57e67907 (patch)
tree6c029b1727797c3367df9abc838a196ee7ae77a5 /.github
parentfc5ba7de72519ee9b85a8cfb2bb8afc2ae21f162 (diff)
ci: fix syntax error in stale.yml
The commas need to be inside of the quotes. Not on the outside. Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stale.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index f865bedeb..e8aa9b4d0 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -24,4 +24,4 @@ jobs:
days-before-close: 365
remove-stale-when-updated: true
exempt-pr-labels: 'no-auto-close'
- exempt-issue-labels: 'no-auto-close', 'new feature', 'enhancement'
+ exempt-issue-labels: 'no-auto-close, new feature, enhancement'