From 4f6196b54b3db01c6a1b4ad8ee322528f9ee4e29 Mon Sep 17 00:00:00 2001 From: rachfop Date: Thu, 21 Dec 2023 11:39:36 -0800 Subject: [PATCH 1/2] Changing click to select --- v1.0/Team Account/invites.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1.0/Team Account/invites.md b/v1.0/Team Account/invites.md index 274c27a..218e7c2 100644 --- a/v1.0/Team Account/invites.md +++ b/v1.0/Team Account/invites.md @@ -10,7 +10,7 @@ createdAt: "Tue Jul 25 2023 19:30:06 GMT+0000 (Coordinated Universal Time)" updatedAt: "Mon Nov 06 2023 19:58:50 GMT+0000 (Coordinated Universal Time)" --- -After you convert your account to a team account, you will be the only member of your team. In order to invite users to join you, navigate to your Team page, and click the "Invite New Member" button at the top of the "Members" section. +After you convert your account to a team account, you will be the only member of your team. In order to invite users to join you, navigate to your Team page, and select the "Invite New Member" button at the top of the "Members" section. [block:image] { From ae900bfef0340ef63fefb77a8ff5a867ab4d44d0 Mon Sep 17 00:00:00 2001 From: rachfop Date: Thu, 21 Dec 2023 11:44:02 -0800 Subject: [PATCH 2/2] Updates --- .github/workflows/create-version.yml | 5 ++--- .github/workflows/delete-version.yml | 3 +-- .github/workflows/update-version.yml | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/create-version.yml b/.github/workflows/create-version.yml index 28e80ba..2fd9455 100644 --- a/.github/workflows/create-version.yml +++ b/.github/workflows/create-version.yml @@ -13,11 +13,10 @@ jobs: - name: Generate branch version string run: | - BRANCH_NAME="${{ github.ref }}" - BRANCH_VERSION=$(echo $BRANCH_NAME | tr -cd '0-9.') + BRANCH_VERSION="${{ github.ref }}" echo "BRANCH_VERSION=$BRANCH_VERSION" >> $GITHUB_ENV - name: Create version of docs for branch 🚀 uses: readmeio/rdme@v8 with: - rdme: versions:create v1.0-${{ env.BRANCH_VERSION }} --key=${{ secrets.README_API_KEY }} --fork=1.0 --main=false --beta=true --deprecated=false --isPublic=false + rdme: versions:create v1.0-${{ env.BRANCH_VERSION }} --key=${{ secrets.README_API_KEY }} --fork=1.0 --main=false --beta=true --deprecated=false --isPublic=false \ No newline at end of file diff --git a/.github/workflows/delete-version.yml b/.github/workflows/delete-version.yml index 4b6334a..49c188a 100644 --- a/.github/workflows/delete-version.yml +++ b/.github/workflows/delete-version.yml @@ -14,8 +14,7 @@ jobs: - name: Generate branch version string run: | - BRANCH_NAME="${{ github.head_ref || github.ref || github.event.ref }}" - BRANCH_VERSION=$(echo $BRANCH_NAME | tr -cd '0-9.') + BRANCH_VERSION="${{ github.ref }}" echo "BRANCH_VERSION=$BRANCH_VERSION" >> $GITHUB_ENV - name: Delete version of docs for branch (if branch is deleted) 🚀 diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml index d04f028..d4b036e 100644 --- a/.github/workflows/update-version.yml +++ b/.github/workflows/update-version.yml @@ -11,8 +11,7 @@ jobs: - name: Generate branch version string run: | - BRANCH_NAME="${{ github.head_ref || github.ref || github.event.ref }}" - BRANCH_VERSION=$(echo $BRANCH_NAME | tr -cd '0-9.') + BRANCH_VERSION="${{ github.ref }}" echo "BRANCH_VERSION=$BRANCH_VERSION" >> $GITHUB_ENV - name: DryRun for debugging