# gajira-create **Repository Path**: mirrors_atlassian/gajira-create ## Basic Information - **Project Name**: gajira-create - **Description**: No description available - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README --------- ⚠️ This repository is no longer maintained and all Gajira actions have been deprecated. --------- # Jira Create Create new issue > ##### Only supports Jira Cloud. Does not support Jira Server (hosted) ## Usage > ##### Note: this action requires [Jira Login Action](https://github.com/marketplace/actions/jira-login) ```yaml - name: Create id: create uses: atlassian/gajira-create@v3 with: project: GA issuetype: Build summary: Build completed for ${{ github.repository }} description: Compare branch fields: '{"customfield_10171": "test"}' - name: Log created issue run: echo "Issue ${{ steps.create.outputs.issue }} was created" ``` ---- ## Action Spec: ### Environment variables - None ### Inputs - `project` (required) - Key of the project - `issuetype` (required) - Type of the issue to be created. Example: 'Incident' - `summary` (required) - Issue summary - `description` - Issue description - `fields` - Additional fields in JSON format ### Outputs - `issue` - Key of the newly created issue ### Reads fields from config file at $HOME/jira/config.yml - `project` - `issuetype` - `summary` - `description` ### Writes fields to config file at $HOME/jira/config.yml - `issue` - a key of a newly created issue ### Writes fields to CLI config file at $HOME/.jira.d/config.yml - `issue` - a key of a newly created issue