diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml new file mode 100644 index 0000000..b2ed63d --- /dev/null +++ b/.github/workflows/lock.yml @@ -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 + +... diff --git a/.github/workflows/react.yml b/.github/workflows/react.yml new file mode 100644 index 0000000..0dd7173 --- /dev/null +++ b/.github/workflows/react.yml @@ -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 + +...