diff --git a/.devbots/lock-issue.yml b/.devbots/lock-issue.yml new file mode 100644 index 0000000..a986e89 --- /dev/null +++ b/.devbots/lock-issue.yml @@ -0,0 +1,5 @@ +enabled: true +comment: > + This issue's conversation has been automatically locked. Please + file a [new issue](https://github.com/CHEF-KOCH/Warez/issues/new) if you would + like to continue the discussion. diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..4ab71ae --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,25 @@ +# action.yml +name: Check Markdown links +# https://github.com/marketplace/actions/markdown-link-check +on: + push: + branches: + - master + schedule: + - cron: '* */24 * * *' + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: +# folder-path: "docs" +# use-quiet-mode: 'yes' +# use-verbose-mode: 'yes' +# file-extension: '.md, .mdx' + max-depth: '2' +# check-modified-files-only: 'no' + config-file: '.github/workflows/ignoredlinks.json' +# folder-path: 'docs/markdown_files' diff --git a/.github/workflows/ignoredlinks.conf b/.github/workflows/ignoredlinks.json similarity index 95% rename from .github/workflows/ignoredlinks.conf rename to .github/workflows/ignoredlinks.json index b89f84d..a0f28ed 100644 --- a/.github/workflows/ignoredlinks.conf +++ b/.github/workflows/ignoredlinks.json @@ -1,27 +1,27 @@ -{ - "ignorePatterns": [ - { - "pattern": "^https://anonym.to/?" - "pattern": "^http://tankafett.biz/?do=hublist" - "pattern": "^ftp://" - "pattern": "^onion://" - } - ], - "replacementPatterns": [ - { - "pattern": "^.attachments", - "replacement": "file://some/conventional/folder/.attachments" - } - ], - "httpHeaders": [ - { - "urls": [ - "https://example.com" - ], - "headers": { - "Authorization": "Basic Zm9vOmJhcg==", - "Foo": "Bar" - } - } - ] -} +{ + "ignorePatterns": [ + { + "pattern": "^https://anonym.to/?" + "pattern": "^http://tankafett.biz/?do=hublist" + "pattern": "^ftp://" + "pattern": "^onion://" + } + ], + "replacementPatterns": [ + { + "pattern": "^.attachments", + "replacement": "file://some/conventional/folder/.attachments" + } + ], + "httpHeaders": [ + { + "urls": [ + "https://example.com" + ], + "headers": { + "Authorization": "Basic Zm9vOmJhcg==", + "Foo": "Bar" + } + } + ] +} diff --git a/.github/workflows/makepdfs.yml b/.github/workflows/makepdfs.yml new file mode 100644 index 0000000..bdb9a0f --- /dev/null +++ b/.github/workflows/makepdfs.yml @@ -0,0 +1,18 @@ +# pdf.yml +# https://github.com/marketplace/actions/create-pdf +# https://github.com/mkrakowitzer/actions-makepdfs/ +on: [push] + +name: CreatePDFs + +jobs: + makepdfs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: mkrakowitzer/actions-makepdfs@master + if: github.ref == 'refs/heads/master' + - uses: actions/upload-artifact@v1 + with: + name: platform-architecture-docs + path: tmp diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index cae01ec..3d6801b 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -1,14 +1,10 @@ -# https://github.com/marketplace/actions/mirror-repository -workflow "Mirror Workflow" { - on = "push" - resolves = ["Mirror Action"] -} - -action "Mirror Action" { - uses = "spyoungtech/mirror-action@master" - secrets = ["GIT_PASSWORD"] - args = "https://gitlab.com/CHEF-KOCH/Warez.git" - env = { - GIT_USERNAME = "CHEF-KOCH" - } -} +# https://github.com/marketplace/actions/mirror-repository +on: [push] + ... + steps: + - uses: actions/checkout@v1 + - uses: spyoungtech/mirror-action@master + with: + REMOTE: 'https://gitlab.com/CHEF-KOCH/Warez.git' + GIT_USERNAME: spyoungtech + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} diff --git a/.github/workflows/pdf.yml b/.github/workflows/pdf.yml index 5b7798d..452a7b2 100644 --- a/.github/workflows/pdf.yml +++ b/.github/workflows/pdf.yml @@ -1,27 +1,18 @@ -on: [push] - -# pdf.yml -name: 'Create PDF' -# https://github.com/marketplace/actions/create-pdf -# https://github.com/mkrakowitzer/actions-makepdfs/ -description: 'Creates PDF files from github markdown' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: mkrakowitzer/actions-makepdfs@master - if: github.ref == 'refs/heads/master' - - uses: actions/upload-artifact@v1 - -inputs: - markdown_dir: '.' - description: 'Location of markdown files in github repository' - required: true - #default: 'doc' - output_dir: - description: 'Location to output PDF files to' - required: true - default: 'pdf' - -branding: - icon: 'activity' - color: 'green' +# pdf.yml +# https://github.com/marketplace/actions/create-pdf +# https://github.com/mkrakowitzer/actions-makepdfs/ +on: [push] + +name: CreatePDFs + +jobs: + makepdfs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: mkrakowitzer/actions-makepdfs@master + if: github.ref == 'refs/heads/master' + - uses: actions/upload-artifact@v1 + with: + name: platform-architecture-docs + path: /pdf diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml deleted file mode 100644 index 86f34de..0000000 --- a/.github/workflows/validate.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Check Markdown links -# https://github.com/marketplace/actions/markdown-link-check -on: - push: - branches: - - master - schedule: - - cron: 0 12 * * * - -jobs: - markdown-link-check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - uses: gaurav-nelson/github-action-markdown-link-check@0.6.0 - with: - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' - config-file: '.github/workflows/ignoredlinks.conf' -# folder-path: 'docs/markdown_files' diff --git a/README.md b/README.md index 71f54c9..894f1b7 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,9 @@ I do not accept any donations or add sponsorship button into this repository. Th - [AlpacinoDump](https://anonym.to/?https://dh.alpacinodump.cf/) - [TUHOCTOEIC.EDU.VN](https://anonym.to/?https://driveteam.nguyenvanlong.blog/) -**[`^ back to top ^`](#readme) +**[`^ back to top ^`](#readme)** + + ## Team Drive Indexer - [GDIndex](https://anonym.to/?https://github.com/maple3142/GDIndex) - [goindex](https://anonym.to/?https://github.com/donwa/goindex) diff --git a/Soft-Ban.md b/Soft-Ban.md index 3e716b5..b5dcdb5 100644 --- a/Soft-Ban.md +++ b/Soft-Ban.md @@ -33,11 +33,10 @@ Please **DO NOT** start discussions why popular websites are de-listed e.g. Fitg - [Crazy Spirits](https://anonym.to/?http://crazyspirits.com/) - (`FR`) - French semi-private tracker for General and Videos. - [HamsterStudio.org](https://anonym.to/?http://hamsterstudio.org/) - (`RU`) - HamsterStudio is russian torrent tracker. It has a lot of TV shows. - [tr.anidub.com](https://anonym.to/?http://tr.anidub.com/) -- [Génération Rosco](https://anonym.to/?http://genration-rosco-tk.net/) - (`FR`) - Movie/TV/General. +- [Genration Rosco](https://anonym.to/?http://genration-rosco-tk.net/) - (`FR`) - Movie/TV/General. - [Bettyboop-tk](https://anonym.to/?http://bettyboop-tk.biz/) - (`FR`) - Movie/TV/General. - ### Magnet Search - [xbit.pw](http://xbit.pw/) - (`insecure`) - A Magnet site search engine.