From d04b8777b818e024d075c4da37965932a0ecf866 Mon Sep 17 00:00:00 2001 From: thefourCraft Date: Mon, 11 Sep 2023 16:44:26 +0300 Subject: [PATCH] Workflows and things (#11) * Rename hello-world.md to intro.md * update pack and fix outdated * temp remove yarn * update github things * create workflows for testing auto pr for pages * update names and improve issue template * update workflow for pages --- .github/workflows/create_docusaurus_page.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/create_docusaurus_page.yml b/.github/workflows/create_docusaurus_page.yml index d014b06..748f88a 100644 --- a/.github/workflows/create_docusaurus_page.yml +++ b/.github/workflows/create_docusaurus_page.yml @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} - name: Create Branch run: | @@ -42,6 +44,7 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v5 with: + token: ${{ secrets.GITHUB_TOKEN }} title: "New Docusaurus Page from Issue ${{ github.event.issue.number }}" branch: "new-page-${{ github.event.issue.number }}" base: "Production"