Skip to content

Commit

Permalink
ci: add workflows for react and lock
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Dec 8, 2022
1 parent 653c5c5 commit 59aaff4
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: lock

"on":
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

permissions:
issues: write
pull-requests: write

concurrency:
group: lock

jobs:
execute:
runs-on: ubuntu-latest

steps:
- uses: dessant/lock-threads@v4

...
31 changes: 31 additions & 0 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: react

"on":
issue_comment:
types:
- created
- edited
pull_request_review_comment:
types:
- created
- edited
schedule:
- cron: "0 0 * * *"

permissions:
actions: write
issues: write
pull-requests: write

concurrency:
group: react

jobs:
execute:
runs-on: ubuntu-latest

steps:
- uses: dessant/reaction-comments@v3

...

0 comments on commit 59aaff4

Please sign in to comment.