Chore: Update CLI docs #854
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Jira Ticket | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
REPO_NAME: ${{ secrets.REPO_NAME }} | |
REPO_OWNER: ${{ secrets.REPO_OWNER }} | |
DOCS_GITHUB_TOKEN: ${{ secrets.DOCS_GITHUB_TOKEN }} | |
REVIEWER: ${{ secrets.REVIEWER }} | |
SEAN_INFO: ${{ secrets.SEAN_INFO }} | |
ROB_INFO: ${{ secrets.ROB_INFO }} | |
LINEAR_API_KEY: ${{ secrets.LINEAR_API_KEY }} | |
LINEAR_TEAM_ID: ${{ secrets.LINEAR_TEAM_ID }} | |
LINEAR_TODO_COLUMN_ID: ${{ secrets.LINEAR_TODO_COLUMN_ID}} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Create ticket and assign reviewer | |
run: | | |
cd utilities/create-docs-ticket && npm install && npm run start:prod "${{ github.event.pull_request.title }}" ${{ github.event.pull_request.html_url }} |