Showing
2 changed files
with
25 additions
and
4 deletions
.github/workflows/actions.yml
0 → 100644
1 | +name: Close inactive issues | ||
2 | +on: | ||
3 | + schedule: | ||
4 | + - cron: "30 1 * * *" | ||
5 | + | ||
6 | +jobs: | ||
7 | + close-issues: | ||
8 | + runs-on: ubuntu-latest | ||
9 | + permissions: | ||
10 | + issues: write | ||
11 | + pull-requests: write | ||
12 | + steps: | ||
13 | + - uses: actions/stale@v3 | ||
14 | + with: | ||
15 | + days-before-issue-stale: 30 | ||
16 | + days-before-issue-close: 14 | ||
17 | + stale-issue-label: "stale" | ||
18 | + stale-issue-message: "This issue is stale because it has been open for 30 days with no activity." | ||
19 | + close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." | ||
20 | + days-before-pr-stale: -1 | ||
21 | + days-before-pr-close: -1 | ||
22 | + repo-token: ${{ secrets.GITHUB_TOKEN }} |
@@ -2,13 +2,12 @@ | @@ -2,13 +2,12 @@ | ||
2 | # This is a generated file; do not edit or check into version control. | 2 | # This is a generated file; do not edit or check into version control. |
3 | export "FLUTTER_ROOT=/Users/lizhuoyuan/Development/flutter" | 3 | export "FLUTTER_ROOT=/Users/lizhuoyuan/Development/flutter" |
4 | export "FLUTTER_APPLICATION_PATH=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example" | 4 | export "FLUTTER_APPLICATION_PATH=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example" |
5 | -export "FLUTTER_TARGET=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example/lib/main.dart" | 5 | +export "FLUTTER_TARGET=lib/main.dart" |
6 | export "FLUTTER_BUILD_DIR=build" | 6 | export "FLUTTER_BUILD_DIR=build" |
7 | export "SYMROOT=${SOURCE_ROOT}/../build/ios" | 7 | export "SYMROOT=${SOURCE_ROOT}/../build/ios" |
8 | export "FLUTTER_BUILD_NAME=1.0.0" | 8 | export "FLUTTER_BUILD_NAME=1.0.0" |
9 | export "FLUTTER_BUILD_NUMBER=1" | 9 | export "FLUTTER_BUILD_NUMBER=1" |
10 | -export "DART_DEFINES=flutter.inspector.structuredErrors%3Dtrue" | ||
11 | export "DART_OBFUSCATION=false" | 10 | export "DART_OBFUSCATION=false" |
12 | -export "TRACK_WIDGET_CREATION=true" | 11 | +export "TRACK_WIDGET_CREATION=false" |
13 | export "TREE_SHAKE_ICONS=false" | 12 | export "TREE_SHAKE_ICONS=false" |
14 | -export "PACKAGE_CONFIG=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example/.dart_tool/package_config.json" | 13 | +export "PACKAGE_CONFIG=.packages" |
-
Please register or login to post a comment