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 30321d0 commit 6da4edc
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 27 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ ij_html_text_wrap = off
[*.php]
indent_size = 4
indent_style = tab
ij_php_indent_code_in_php_tags = true
ij_php_method_brace_style = end_of_line
ij_php_new_line_after_php_opening_tag = true

[{*.markdown,*.md}]
ij_markdown_max_lines_around_block_elements = 0
Expand Down
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 6da4edc

Please sign in to comment.