Skip to content

A GitHub action that calculates the size of your psalm baseline on a pull request compared to the base branch. This allows you to easily comment the difference on a pull request, or use it in other subsequent actions

License

annervisser/psalm-baseline-progress-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Psalm baseline progress

A GitHub action that calculates the size of your psalm baseline. Allowing you to track the progress of your baseline over time.

The score is the total number of occurrences of <code></code> blocks in the baseline


Usage

Inputs

Note: All inputs are optional and the defaults should work in most cases

Input Default Description
base_ref ${{ github.event.pull_request.base.sha }} git ref to use for calculating the base_score
head_ref 'HEAD' git ref to use for calculating the head_score
path_to_baseline './psalm-baseline.xml' Path to the baseline file
template_decreased See Templates Template to use when the baseline has decreased (See Templates)
template_increased See Templates Template to use when the baseline has grown (See Templates)
template_no_change See Templates Template to use when the baseline score hasn't changed (See Templates)

Outputs

Output Description
base_score Baseline score at base_ref
head_score Baseline score at head_ref
score_diff Difference between the two scores (head_score - base_score)
score_diff_string Same a score_diff, with a + prepended for positive numbers
output_message Parsed output based on the template_* inputs (See Templates)

Templates

The template_* inputs allow you to specify different templates for when the score increases/decreases/remains the same.

These templates are parsed by envsubst, with valid substitutions being: $BASE_SCORE, $HEAD_SCORE, $SCORE_DIFF & $SCORE_DIFF_STRING

The relevant template is parsed and output to output_message for you to use.

Customising the templates

- id: baseline-scores
  uses: annervisser/psalm-baseline-progress-action@v1
  with:
    template_decreased: 'Baseline decreased! from $BASE_SCORE to $HEAD_SCORE'
    template_increased: |
      The baseline has increased!
      Old score: $BASE_SCORE
      New score: $HEAD_SCORE
      Difference: $SCORE_DIFF_STRING
    template_no_change: 'Nothing''s changed!'

The default templates look like this:

  • 🍀 Psalm baseline has decreased: **$BASE_SCORE** → **$HEAD_SCORE** _(**${SCORE_DIFF}**)_
    🍀 Psalm baseline has decreased: 500490 (-10)

  • 📛 Psalm baseline has increased: **$BASE_SCORE** → **$HEAD_SCORE** _(**+${SCORE_DIFF}**)_
    📛 Psalm baseline has increased: 500510 (+10)

  • Psalm baseline score remained the same: **$HEAD_SCORE**
    Psalm baseline score remained the same: 500

Examples

Comment on pull requests

See Templates for customizing the output_message

on:
  pull_request:
jobs:
  test-action:
    runs-on: ubuntu-latest
    permissions:
      contents: read # Default permission when no others are specified, needed for actions/checkout
      pull-requests: write # Needed to post a comment on a pull request
    steps:
      - uses: actions/checkout@v3

      - id: baseline-scores
        uses: annervisser/psalm-baseline-progress-action@v1

      - uses: thollander/actions-comment-pull-request@v2
        with:
          message: ${{ steps.psalm-baseline-progress-action.outputs.output_message }}
          comment_tag: 'psalm_baseline_score_comment'
          create_if_not_exists: ${{ steps.psalm-baseline-progress-action.outputs.score_diff != 0 }} # Only create comment when baseline score changed, but always update existing comment
          # GITHUB_TOKEN: <a GitHub PAT> # Only needed to comment on pull requests coming from forks

Fail pull request check if baseline has grown

on:
  pull_request:
jobs:
  test-action:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - id: baseline-scores
        uses: annervisser/psalm-baseline-progress-action@v1

      - if: steps.baseline-scores.outputs.score_diff > 0
        run: |
          echo ::error::Baseline has grown by ${{ steps.baseline-scores.score_diff }}
          exit 1

About

A GitHub action that calculates the size of your psalm baseline on a pull request compared to the base branch. This allows you to easily comment the difference on a pull request, or use it in other subsequent actions

Topics

Resources

License

Stars

Watchers

Forks