Skip to content

Commit

Permalink
Updated repository files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackyliang committed Feb 19, 2024
1 parent f94e090 commit 48b9fe4
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 27 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/lock-inactive-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Lock Inactive Issues"

run-name: "Running a scheduled task to lock inactive issues over 30 days"

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

permissions:
issues: "write"

jobs:
lock-inactive-issues:
runs-on: "ubuntu-latest"
steps:
- uses: "dessant/lock-threads@v5"
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
issue-comment: "Due to inactivity, this issue will be locked and marked as resolved. If you have any further questions or inquiries, please feel free to open a new [issue](https://github.com/mrjackyliang/homebridge-adt-pulse/issues/new/choose)."
issue-inactive-days: 30
issue-lock-reason: "resolved"
log-output: true
25 changes: 0 additions & 25 deletions .github/workflows/lock-threads.yml

This file was deleted.

19 changes: 17 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,26 @@ package-lock.json
#################
.next/

#####################
#### AWS Amplify ####
#####################
amplify/.config/local-*
amplify/backend/.temp
amplify/backend/amplify-meta.json
amplify/\#current-cloud-backend
amplify/hooks/*.sample
amplify/logs
amplify/mock-api-resources
amplify/mock-data
src/amplifyconfiguration.json
src/aws-exports.js

##################
#### Firebase ####
##################
**/.firebase
**/.firebaserc
.firebase
.firebaserc
firebase-debug.log

###################
#### JetBrains ####
Expand Down

0 comments on commit 48b9fe4

Please sign in to comment.