Skip to content

docs(GITBOOK#155): Tina - grammar and nomenclature fixes #184

docs(GITBOOK#155): Tina - grammar and nomenclature fixes

docs(GITBOOK#155): Tina - grammar and nomenclature fixes #184

Workflow file for this run

name: Gitbook Review
on:
push:
branches:
- gitbook
permissions:
contents: read
jobs:
create-pull-request:
env:
branch: gitbook
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Authenticate GitHub CLI
run: |
echo -e ${{ secrets.MY_GITHUB_TOKEN }} | gh auth login --with-token
- name: Create Pull Request
run: |
gh pr create \
--base 'trunk' \
--head 'gitbook' \
--reviewer 'xavierchanth' \
--title 'docs(automated): Update docs from Gitbook' \
--body 'Sync Gitbook docs branch to trunk' || \
echo "Already created?";