Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seripap/gh-linear-comment
GH Actions workflow to leave a comment on a Linear Ticket
https://github.com/seripap/gh-linear-comment
Last synced: 8 days ago
JSON representation
GH Actions workflow to leave a comment on a Linear Ticket
- Host: GitHub
- URL: https://github.com/seripap/gh-linear-comment
- Owner: seripap
- License: mit
- Created: 2024-07-19T13:57:14.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-07-19T13:58:30.000Z (5 months ago)
- Last Synced: 2024-11-09T14:02:46.341Z (about 2 months ago)
- Language: JavaScript
- Size: 367 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Github Linear Comment
Add a comment to a Linear ticket via GitHub Actions.
`linear-issue-id` looks like `ENG-1234`.
`body` can be formatted with markdown.# Usage
### .github/workflows/labeled-issue.yml
Push a new linear issue when issues are tagged with `triaged`
```yaml
name: Comment on Linear Ticketon:
push:
branches:
- '**'
jobs:
comment-linear-ticket:
runs-on: ubuntu-latest
steps:
- name: 'Comment'
uses: seripap/gh-linear-comment@v1
with:
linear-key: your-linear-api-key
linear-issue-id: your-linear-team-id
body: ${{ github.event.issue.body }}
```