diff --git a/.github/workflows/format-markdown-files.yml b/.github/workflows/format-markdown-files.yml deleted file mode 100644 index a8f7de9c..00000000 --- a/.github/workflows/format-markdown-files.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Format Markdown Files - - -jobs: - format_markdown_files: - runs-on: ubuntu-latest - if: github.repository == 'wailsapp/wails' - steps: - - uses: actions/checkout@v3 - - - name: Setup Nodejs - uses: actions/setup-node@v2 - with: - node-version: 18.x - - - name: Install Task - uses: arduino/setup-task@v1 - with: - version: 3.x - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Format All Markdown Files - run: task format-all-md - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 - with: - commit-message: "docs: format document" - title: "docs: format document" - body: "- [x] Format all Markdown(x) documents" - branch: chore/format-markdown-files - delete-branch: true - draft: false