h1alexbel / fakehub

GitHub API Server Stub. Fully functional fake version of a GitHub API that supports all the features and works locally, with no connection to GitHub at all.
MIT License
4 stars 0 forks source link

make cli installable from homebrew #38

Open h1alexbel opened 1 month ago

h1alexbel commented 1 month ago

@l3r8yJ WDYT?

github-actions[bot] commented 1 month ago

@h1alexbel thanks for the report, here is a feedback:

Problems

  1. Poorly formatted summary
  2. Incomplete description
  3. Excessive use of text abbreviations

I would recommend updating the summary to clearly state the issue, such as "Request to make CLI installable via Homebrew".

Please fix the bug report in order it to get resolved faster. Analyzed with Phind/Phind-CodeLlama-34B-v2

h1alexbel commented 1 week ago

we can push cli to homebrew using GHA like this:

  publish-homebrew:
    name: Publish Homebrew formula
    if: ${{ !contains(github.ref, '-') }}
    runs-on: ubuntu-22.04
    permissions:
      contents: read
    steps:
      - name: Bump formula
        uses: mislav/bump-homebrew-formula-action@v3
        with:
          formula-name: git-cliff
          formula-path: Formula/g/git-cliff.rb
        env:
          COMMITTER_TOKEN: ${{ secrets.HOMEBREW_COMMITTER_TOKEN }}

@l3r8yJ FYI