From 6da4edcc66db76e81c121c08a40d80e2b249a2e3 Mon Sep 17 00:00:00 2001 From: Jacky Liang Date: Mon, 19 Feb 2024 12:14:53 -0500 Subject: [PATCH] Updated repository files --- .editorconfig | 3 +++ .github/workflows/lock-inactive-issues.yml | 22 +++++++++++++++++++ .github/workflows/lock-threads.yml | 25 ---------------------- .gitignore | 19 ++++++++++++++-- 4 files changed, 42 insertions(+), 27 deletions(-) create mode 100644 .github/workflows/lock-inactive-issues.yml delete mode 100644 .github/workflows/lock-threads.yml diff --git a/.editorconfig b/.editorconfig index f5164ce..7b39ce9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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 diff --git a/.github/workflows/lock-inactive-issues.yml b/.github/workflows/lock-inactive-issues.yml new file mode 100644 index 0000000..0edcad4 --- /dev/null +++ b/.github/workflows/lock-inactive-issues.yml @@ -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 diff --git a/.github/workflows/lock-threads.yml b/.github/workflows/lock-threads.yml deleted file mode 100644 index 5690941..0000000 --- a/.github/workflows/lock-threads.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: 'Lock Threads' - -on: - schedule: - - cron: '0 * * * *' - -permissions: - issues: write - pull-requests: write - discussions: write - -concurrency: - group: lock-threads - -jobs: - action: - runs-on: ubuntu-latest - steps: - - uses: dessant/lock-threads@v5.0.1 - with: - github-token: ${{ github.token }} - issue-comment: 'This issue is now locked and considered resolved. If you have questions or inquiries, you may start a new issue.' - issue-inactive-days: '30' - issue-lock-reason: 'resolved' - log-output: true diff --git a/.gitignore b/.gitignore index b78f277..01cdf21 100644 --- a/.gitignore +++ b/.gitignore @@ -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 ####