Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/casperiv0/create-linear-issue
Automatically import a created GitHub issue into Linear.
https://github.com/casperiv0/create-linear-issue
actions linear
Last synced: 25 days ago
JSON representation
Automatically import a created GitHub issue into Linear.
- Host: GitHub
- URL: https://github.com/casperiv0/create-linear-issue
- Owner: casperiv0
- License: mit
- Created: 2022-01-05T14:54:02.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T15:36:01.000Z (over 2 years ago)
- Last Synced: 2024-12-06T07:03:50.204Z (about 1 month ago)
- Topics: actions, linear
- Language: TypeScript
- Homepage:
- Size: 335 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Create Linear Issue
Automatically import a created GitHub issue into Linear.
## Inputs
| Name | Required | Descrition |
| :----------------- | :------- | :----------------------------------------------------------------------- |
| `linear-api-token` | `true` | The API key to your Linear team |
| `team-id` | `true` | The id to your Linear team |
| `state-id` | `true` | The id of what state must be applied (state: 'Todo', 'In Progress', etc) |## Usage
Create a new workflow file (example: `.github/workflows/linear.yml`) and paste the following:
```yml
name: Create Linear Issueon:
issues:
types: [opened]jobs:
create-linear-issue:
runs-on: ubuntu-latest
steps:
- name: Create Linear Issue
uses: Dev-CasperTheGhost/[email protected]
with:
# from GitHub Secrets within the repo
linear-api-token: ${{ secrets.LINEAR_API_TOKEN }}
team-id: ${{ secrets.TEAM_ID }}
state-id: ${{ secrets.STATE_ID }}
```