Skip to content

Commit 59aaff4

Browse files
committed
ci: add workflows for react and lock
1 parent 653c5c5 commit 59aaff4

2 files changed

Lines changed: 54 additions & 0 deletions

File tree

.github/workflows/lock.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: lock
3+
4+
"on":
5+
schedule:
6+
- cron: "0 0 * * *"
7+
workflow_dispatch:
8+
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
13+
concurrency:
14+
group: lock
15+
16+
jobs:
17+
execute:
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- uses: dessant/lock-threads@v4
22+
23+
...

.github/workflows/react.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: react
3+
4+
"on":
5+
issue_comment:
6+
types:
7+
- created
8+
- edited
9+
pull_request_review_comment:
10+
types:
11+
- created
12+
- edited
13+
schedule:
14+
- cron: "0 0 * * *"
15+
16+
permissions:
17+
actions: write
18+
issues: write
19+
pull-requests: write
20+
21+
concurrency:
22+
group: react
23+
24+
jobs:
25+
execute:
26+
runs-on: ubuntu-latest
27+
28+
steps:
29+
- uses: dessant/reaction-comments@v3
30+
31+
...

0 commit comments

Comments
 (0)