Initial commit: Complete workspace configuration
- MOper/ configurations - home-assistant/ configurations - scripts/ automation scripts - unix/ system configurations - docker/ Docker services (app, devtools, database, infra, maintenance, portainer, supervision, test) Excludes: databases, logs, large files, Git submodules, secrets (via .gitignore)
This commit is contained in:
9
docker/test/tvtracker/config/www/organizr/.github/FUNDING.yml
vendored
Normal file
9
docker/test/tvtracker/config/www/organizr/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: causefx
|
||||
patreon: organizr
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
custom: # Replace with a single custom sponsorship URL
|
||||
22
docker/test/tvtracker/config/www/organizr/.github/ISSUE_TEMPLATE.md
vendored
Normal file
22
docker/test/tvtracker/config/www/organizr/.github/ISSUE_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<!-- Please Fill out as much information as possible, Thanks! -->
|
||||
###### Organizr Version: V 1.x
|
||||
###### Branch: Master/Develop
|
||||
###### WebServer: Nginx/Apache
|
||||
###### Operating System: Windows/MacOS/Ubuntu
|
||||
<hr>
|
||||
|
||||
##### Problem Description:
|
||||
<!---TYPE HERE--->
|
||||
|
||||
<hr>
|
||||
|
||||
##### Reproduction Steps:
|
||||
<!---TYPE HERE--->
|
||||
|
||||
<hr>
|
||||
|
||||
#### Errors on screen? If so paste here:
|
||||
<!-- (Errors go below the first ``` . Don't remove the ' tags) -->
|
||||
```
|
||||
|
||||
```
|
||||
14
docker/test/tvtracker/config/www/organizr/.github/workflows/lock.yml
vendored
Normal file
14
docker/test/tvtracker/config/www/organizr/.github/workflows/lock.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
name: Lock closed stale issue
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
lock:
|
||||
if: github.event.label.name == 'closed-no-issue-activity'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: OSDKDev/lock-issues@v1.1
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
21
docker/test/tvtracker/config/www/organizr/.github/workflows/stale.yml
vendored
Normal file
21
docker/test/tvtracker/config/www/organizr/.github/workflows/stale.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Close stale issues
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 3 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
|
||||
close-issue-message: "This issue has been closed due to lack of activity, if this issue still persists, please re-open it."
|
||||
close-issue-label: "closed-no-issue-activity"
|
||||
stale-issue-label: "no-issue-activity"
|
||||
days-before-stale: 15
|
||||
days-before-close: 90
|
||||
exempt-issue-labels: "bypass-activity"
|
||||
exempt-pr-labels: "bypass-activity"
|
||||
Reference in New Issue
Block a user