Spenser Black

Results 109 comments of Spenser Black

Note: Looks like `git tag -l --format="%(contents:body)" ` gets the tag message. Until this is implemented a workaround could be to write the contents to a file and use `body_path`,...

I think I finally got the workaround working :weary: This is an example of what I did ```yaml name: Release on: push: tags: ['v*.*.*'] jobs: release-notes: runs-on: ubuntu-latest steps: -...

@Fuseteam I ended up writing a [simple action that uses `gh`](https://github.com/spenserblack/actions-tag-to-release) since I was repeating the same workflow a lot. It doesn't do much except take the subject (first line)...

Oh yeah it pretty naively tries to get the latest tag message. It also needs to be checked out at the ref (see the `actions/checkout` part of the example). The...

@colin-kiegel Any chance of a review of this PR or #38?

Looking at termui's docs quickly, looks like it doesn't support relative sizing, only absolute, unlike tview, which is surprising. But I assume it shouldn't be too difficult to calculate manually...

That's what I get for only searching "Size" :sweat_smile: Looks like octotui assumes the screen is at least `220` wide from what I'm looking at, so something like ```go x,...

Ignore my previous comment, it's probably better to use termui's Grid than to manually resize everything based on terminal size. See #9. >looks like it doesn't support relative sizing ......

Thanks! I can make a PR if you want the feature added.

An [extension](https://marked.js.org/using_pro#extensions) would probably work. Here's a simple example: ```javascript const heading = { name: 'heading', renderer({ depth }) { // return false to use default renderer return depth ===...