From 1dad2381e5d05f07006955d8f26f204f3043ed00 Mon Sep 17 00:00:00 2001 From: Andre_601 Date: Thu, 30 Jun 2022 22:16:06 +0200 Subject: [PATCH] Delete wiki action (Not needed) --- .github/workflows/wiki.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/wiki.yml diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml deleted file mode 100644 index b24b2d3..0000000 --- a/.github/workflows/wiki.yml +++ /dev/null @@ -1,36 +0,0 @@ -# -# This is a GitHub Action that allows us to auto-update the wiki -# when a Pull request changes specific files in a folder. -# -name: Update Wiki - -on: - push: - # - # Only trigger when the push changes any files in the wiki-folder. - # - paths: - - 'wiki/**' - branches: - - 'docs/wiki' - # - # Releases cause this action to also fire. - # Using this prevents this problem. - # - tags-ignore: - - '**' - -jobs: - update: - runs-on: ubuntu-latest - steps: - - name: 'Checkout Code' - uses: actions/Checkout@v2 - - name: 'Update Wiki' - uses: Andrew-Chen-Wang/github-wiki-action@v3 - env: - WIKI_DIR: wiki/ - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GH_MAIL: 'actions@github.com' - GH_NAME: 'github-actions[bot]' - EXCLUDED_FILES: 'README.md'