Skip to content

Commit 81e8dab

Browse files
committed
Merge branch 'feature/stale_action'
2 parents f630c1d + ea14f31 commit 81e8dab

File tree

3 files changed

+27
-7
lines changed

3 files changed

+27
-7
lines changed

.github/workflows/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Close stale issues'
2+
on:
3+
schedule:
4+
- cron: '0 0 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/[email protected]
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity.'
14+
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity.'
15+
exempt-issue-label: 'no-stale'
16+
exempt-pr-label: 'no-stale'
17+
days-before-stale: 60
18+
days-before-close: 5

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"license": "MIT",
2828
"dependencies": {
2929
"async-csv": "^2.1.3",
30-
"entry-hw": "git+https://github.com/entrylabs/entry-hw.git#dist/v1.9.4",
30+
"entry-hw": "git+https://github.com/entrylabs/entry-hw.git#dist/v1.9.5",
3131
"entry-hw-server": "git+https://github.com/entrylabs/entry-hw-server.git#master",
32-
"entry-js": "git+https://github.com/entrylabs/entryjs.git#dist/offline_v2.0.19",
32+
"entry-js": "git+https://github.com/entrylabs/entryjs.git#dist/offline_v2.0.20",
3333
"entry-tool": "git+https://github.com/entrylabs/entry-tool.git#v1.20200226.207",
3434
"excel4node": "^1.7.0",
3535
"fs-extra": "^8.1.0",

yarn.lock

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2632,9 +2632,9 @@ enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0:
26322632
version "2.0.0"
26332633
resolved "git+https://github.com/entrylabs/entry-hw-server.git#68c36db097b2e92ac8ae8348e32e3e4cd86b0b9e"
26342634

2635-
"entry-hw@git+https://github.com/entrylabs/entry-hw.git#dist/v1.9.4":
2636-
version "1.9.4"
2637-
resolved "git+https://github.com/entrylabs/entry-hw.git#2fc563ea4df196627ec0b07ffdcd61c79f9fcb23"
2635+
"entry-hw@git+https://github.com/entrylabs/entry-hw.git#dist/v1.9.5":
2636+
version "1.9.5"
2637+
resolved "git+https://github.com/entrylabs/entry-hw.git#3feffbae952f408f634989520723f60b720f9c86"
26382638
dependencies:
26392639
cross-spawn "^7.0.0"
26402640
fs-extra "^8.1.0"
@@ -2646,10 +2646,12 @@ enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0:
26462646
socket.io "^2.2.0"
26472647
socket.io-client "^2.2.0"
26482648
tar "^6.0.1"
2649+
winston "^3.2.1"
2650+
winston-daily-rotate-file "^4.4.2"
26492651

2650-
"entry-js@git+https://github.com/entrylabs/entryjs.git#dist/offline_v2.0.19":
2652+
"entry-js@git+https://github.com/entrylabs/entryjs.git#dist/offline_v2.0.20":
26512653
version "0.0.0"
2652-
resolved "git+https://github.com/entrylabs/entryjs.git#503f4e63fb5f4b8eb8aaeba94890a6c623941531"
2654+
resolved "git+https://github.com/entrylabs/entryjs.git#82961b9fa48dd4f332c3dc6445d960a231ea3131"
26532655

26542656
"entry-tool@git+https://github.com/entrylabs/entry-tool.git#v1.20200226.207":
26552657
version "0.0.0"

0 commit comments

Comments
 (0)