├── .github ├── FUNDING.yml ├── renovate.json ├── labels.yml └── workflows │ └── label-sync.yml ├── README.md └── LICENSE /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: garlicteam 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base" 4 | ], 5 | "labels": ["dependencies"], 6 | "baseBranches": [ "candyfier", "modmail", "musicbot", "pollbot", "ticketbot", "tiktokbot" ] 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

Other Stuff

3 |
4 | 5 | This repo is for storing a few things for which it is useless to have another repo.. 6 | 7 | Currently branchs: 8 | - master 9 | - old 10 | - arduino 11 | - bash-things 12 | - candyfier 13 | - modmail 14 | - musicbot 15 | - ticketbot 16 | - tiktokbot 17 | - youtubebot 18 | -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- 1 | - name: 'gcommands changes' 2 | color: '5663e9' 3 | - name: 'discord.js changes' 4 | color: '5663e9' 5 | - name: 'bug' 6 | color: 'f02b56' 7 | - name: 'discussion' 8 | color: 'ffffff' 9 | - name: 'has PR' 10 | color: '4b1f8e' 11 | - name: 'in progress' 12 | color: 'ffccd7' 13 | - name: 'question' 14 | color: 'd147cf' 15 | - name: 'wontfix' 16 | color: 'ffffff' 17 | - name: 'dependencies' 18 | color: '276bd1' 19 | - name: 'chore' 20 | color: 'ffffff' 21 | - name: 'feature request' 22 | color: 'fcf95a' -------------------------------------------------------------------------------- /.github/workflows/label-sync.yml: -------------------------------------------------------------------------------- 1 | name: Label Sync 2 | 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' 6 | workflow_dispatch: 7 | push: 8 | branches: 9 | - master 10 | paths: 11 | - '.github/labels.yml' 12 | 13 | jobs: 14 | labeler: 15 | name: Labeler 16 | runs-on: ubuntu-latest 17 | steps: 18 | - name: Checkout repository 19 | uses: actions/checkout@v2 20 | 21 | - name: Sync 22 | uses: crazy-max/ghaction-github-labeler@v3 23 | with: 24 | github-token: ${{ secrets.GITHUB_TOKEN }} 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Jozef Steinhübl 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------