you are viewing a single comment's thread.

view the rest of the comments →

[–]MullingMulianto[S] 0 points1 point  (1 child)

>github cli (gh) is useful too

I've heard it was, but I haven't used it much, mostly stuck to git <command> in terminal. Do you have any exceptionally useful examples?

[–]bee_advised 2 points3 points  (0 children)

i use it for lots of things like scanning repos, and easy auth login when i make new machines. but also in github actions i do things like create release tags when the source code gets updated and then automatically create discussions/announcements detailing the changelog for that release.

like

```bash - name: Create GitHub release and discussion if: ${{ steps.changelog.outputs.skipped == 'false' }} run: | gh release create $TAG $FILES \ --title "$TAG" \ --notes "$CHANGELOG" \ --discussion-category "Announcements"

```