Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build.yml

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [actionlint] reported by reviewdog 🐶
could not parse action metadata in "/github/workspace/action-c2a-build": line 7: unexpected key "type" for definition of input "reviewdog_fail_on_error" [action]

uses: ./action-c2a-build

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [actionlint] reported by reviewdog 🐶
could not parse action metadata in "/github/workspace/action-c2a-build-win32": line 7: unexpected key "type" for definition of input "cmake_flags" [action]

- uses: ./action-c2a-build-win32

Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ on:
reviewdog_default_filter:
type: string
default: added
reviewdog_fail_on_error:
type: boolean
default: true
secrets:
GH_FEDERATION_ENDPOINT:
required: false
Expand Down Expand Up @@ -104,6 +107,7 @@ jobs:
reviewdog_tool_name: clang-tidy -${{ matrix.warning }}
reviewdog_reporter: ${{ (!contains(matrix.warning, 'Wextra') && inputs.reviewdog_default_reporter ) || 'github-check' }}
reviewdog_filter_mode: ${{ (!contains(matrix.warning, 'Wextra') && inputs.reviewdog_default_filter ) || 'nofilter' }}
reviewdog_fail_on_error: ${{ inputs.reviewdog_fail_on_error }}

build_linux32_cxx:
if: inputs.build_as_cxx
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ jobs:
build_as_cxx: true
reviewdog_default_reporter: github-check
reviewdog_default_filter: added
reviewdog_fail_on_error: false
Comment thread
sksat marked this conversation as resolved.
4 changes: 4 additions & 0 deletions action-c2a-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ inputs:
reviewdog_filter_mode:
type: string
default: added
reviewdog_fail_on_error:
type: boolean
default: true

runs:
using: "composite"
Expand Down Expand Up @@ -125,3 +128,4 @@ runs:
reporter: ${{ inputs.reviewdog_reporter }}
filter_mode: ${{ inputs.reviewdog_filter_mode }}
workdir: ./c2a_user/${{ inputs.c2a_dir }}/build
fail_on_error: ${{ inputs.reviewdog_fail_on_error }}
Loading