Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub workflow output format #10260

Closed
codingjoe opened this issue Mar 7, 2025 · 4 comments · Fixed by #10272
Closed

GitHub workflow output format #10260

codingjoe opened this issue Mar 7, 2025 · 4 comments · Fixed by #10272
Labels
Documentation 📗 Needs PR This issue is accepted, sufficiently specified and now needs an implementation

Comments

@codingjoe
Copy link
Contributor

codingjoe commented Mar 7, 2025

Current problem

Hi there 👋,

GitHub supports a special output format for workflow, that enables the workflow to create code comments on pull-requests.

We currently use a GitHub workflow similar to this:

  pylint:
    name: PyLint
    runs-on: ubuntu-latest
    env:
      DJANGO_SETTINGS_MODULE: my.app.settings
    strategy:
      matrix:
        type:
          - name: error
            enable: E,F
            disable: E0401
          - name: warning
            enable: W
            disable: ''
          - name: notice
            enable: R,C
            disable: C0114,C0115,C0116
          - name: debug
            enable: I
            disable: ''

    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version-file: 'pyproject.toml'
      - run: python -m pip install pylint
      - run: pylint --load-plugins pylint_django --exit-zero --msg-template='::${{matrix.type.name}} file={path},line={line},lineEnd={end_line},col={column},colEnd={end_column},title={symbol} ({msg_id})::{msg}' --disable=all --enable=${{matrix.type.enable}} --disable=${{matrix.type.disable}} . --out

However, this will cause PyLint to run multiple times, wasting precious compute time.

Desired solution

I'd love to native support --output-format=github that correctly sets the message type for GitHub. This is the only thing, that you currently can't achieve with --message-template.

Since GitHub is a rather popular collaboration platform, I believe this feature would be welcome by other community members 😉

Additional context

https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions

@codingjoe codingjoe added the Needs triage 📥 Just created, needs acknowledgment, triage, and proper labelling label Mar 7, 2025
@codingjoe
Copy link
Contributor Author

I'd be happy to provide a patch myself, if that were helpful 😃

@jacobtylerwalls
Copy link
Member

Hey @codingjoe, we have that already (example, release note), but clearly we need some docs to make it more discoverable.

@jacobtylerwalls jacobtylerwalls added Documentation 📗 Needs PR This issue is accepted, sufficiently specified and now needs an implementation and removed Needs triage 📥 Just created, needs acknowledgment, triage, and proper labelling labels Mar 8, 2025
@Pierre-Sassoulas
Copy link
Member

If we do #4322, the discoverability would be great.

@codingjoe
Copy link
Contributor Author

codingjoe commented Mar 10, 2025

Image

@jacobtylerwalls thanks mate 🥇 I could have just tried github ;)
I created a tiny PR to help the next person: #10272

Pierre-Sassoulas pushed a commit that referenced this issue Mar 10, 2025
github-actions bot pushed a commit that referenced this issue Mar 10, 2025
(cherry picked from commit 5f26f32)
Pierre-Sassoulas pushed a commit that referenced this issue Mar 10, 2025
…#10273)

(cherry picked from commit 5f26f32)

Co-authored-by: Johannes Maron <johannes@maron.family>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Documentation 📗 Needs PR This issue is accepted, sufficiently specified and now needs an implementation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants