Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reviewdog/action-actionlint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd627997c9688c2f39e13917aed23873c031b834
Choose a base ref
...
head repository: reviewdog/action-actionlint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: afad3b6ab835e5611bda8c8193377e2d5c21413d
Choose a head ref
  • 14 commits
  • 3 files changed
  • 7 contributors

Commits on Jun 6, 2024

  1. Copy the full SHA
    f5d5611 View commit details

Commits on Jun 7, 2024

  1. Merge pull request #132 from reviewdog/massongit-patch-1

    README: remove a invalid input
    massongit authored Jun 7, 2024
    Copy the full SHA
    c5758cf View commit details

Commits on Jun 16, 2024

  1. Copy the full SHA
    d7769a1 View commit details
  2. Merge pull request #133 from reviewdog/change_filter_mode

    Change the default filter_mode to file
    haya14busa authored Jun 16, 2024
    Copy the full SHA
    bdb527e View commit details
  3. Copy the full SHA
    c47c165 View commit details
  4. bump v1.49.0

    haya14busa committed Jun 16, 2024
    Copy the full SHA
    52819f5 View commit details

Commits on Jun 17, 2024

  1. Copy the full SHA
    08ac230 View commit details
  2. Merge pull request #134 from reviewdog/depup/reviewdog

    chore(deps): update reviewdog to 0.18.0
    shogo82148 authored Jun 17, 2024
    Copy the full SHA
    6041cec View commit details
  3. Copy the full SHA
    ce66d11 View commit details
  4. bump v1.50.0

    shogo82148 committed Jun 17, 2024
    Copy the full SHA
    2927e85 View commit details

Commits on Jun 22, 2024

  1. Copy the full SHA
    e183d38 View commit details
  2. Merge pull request #135 from reviewdog/depup/reviewdog

    chore(deps): update reviewdog to 0.18.1
    shogo82148 authored Jun 22, 2024
    Copy the full SHA
    1b4bd00 View commit details
  3. Copy the full SHA
    3095868 View commit details
  4. bump v1.51.0

    shogo82148 committed Jun 22, 2024
    Copy the full SHA
    afad3b6 View commit details
Showing with 5 additions and 9 deletions.
  1. +1 −1 Dockerfile
  2. +1 −5 README.md
  3. +3 −3 action.yml
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ RUN apk --update add git curl && \
rm /var/cache/apk/*

# install reviewdog
ENV REVIEWDOG_VERSION=v0.17.5
ENV REVIEWDOG_VERSION=v0.18.1
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}

# install actionlint
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -44,10 +44,6 @@ actions with different config.
Optional. Report level for reviewdog [info,warning,error].
It's same as `-level` flag of reviewdog.

### `workdir`

Optional. Working directory relative to the root directory.

### `reporter`

Optional. Reporter of reviewdog command [github-pr-check,github-pr-review].
@@ -56,7 +52,7 @@ It's same as `-reporter` flag of reviewdog.
### `filter_mode`

Optional. Filtering mode for the reviewdog command [added,diff_context,file,nofilter].
Default is added.
Default is file.

### `fail_on_error`

6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -24,8 +24,8 @@ inputs:
filter_mode:
description: |
Filtering mode for the reviewdog command [added,diff_context,file,nofilter].
Default is added.
default: 'added'
Default is file.
default: 'file'
required: true
fail_on_error:
description: |
@@ -43,7 +43,7 @@ inputs:
required: false
runs:
using: 'docker'
image: 'docker://ghcr.io/reviewdog/action-actionlint:v1.48.0'
image: 'docker://ghcr.io/reviewdog/action-actionlint:v1.51.0'
branding:
color: red
icon: check-circle