From 06ffc17e993a06374235c5f35678e8f154cf89ad Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Mon, 2 Dec 2024 22:25:40 +0100 Subject: [PATCH] ci: update pandoc workflow to run on main branch Update GitHub Actions workflow configuration to run pandoc to vimdoc conversion on the main branch instead of the canary branch. This change ensures documentation is properly generated and updated when changes are merged into the main branch. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c4ef6ce..5752b6c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. contents: write name: pandoc to vimdoc - if: ${{ github.ref == 'refs/heads/canary' }} + if: ${{ github.ref == 'refs/heads/main' }} steps: - uses: actions/checkout@v4 with: