forked from flutter-tizen/flutter-tizen
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 1.05 KB
/
close_issue.yml
File metadata and controls
36 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2025 Samsung Electronics Co., Ltd. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Configuration for close stale issues - https://github.com/actions/stale
name: Close stale issues
permissions:
issues: write
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
lock:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
days-before-close: 0
only-issue-labels: ""
exempt-issue-labels: |
bug
enhancement
keep
close-issue-message: >
This page has been automatically closed since there has not been any recent activity. If you are still experiencing a similar issue, please open a new issue with additional information about the issue.
operations-per-run: 100
stale-pr-message: ""
days-before-pr-stale: -1
days-before-pr-close: -1