diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ecacf0c..a4b5278 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -23,4 +23,4 @@ jobs: uses: actions/checkout@v4 - name: Validate action file syntax - run: yamllint -d relaxed action.yml + run: yamllint -c .github/yamllint-config.yml action.yml diff --git a/.github/yamllint-config.yml b/.github/yamllint-config.yml new file mode 100644 index 0000000..a5f2c7b --- /dev/null +++ b/.github/yamllint-config.yml @@ -0,0 +1,8 @@ +--- + +extends: default + +rules: + line-length: + max: 120 + level: warning diff --git a/action.yml b/action.yml index cc3bc8d..153ab2b 100644 --- a/action.yml +++ b/action.yml @@ -13,8 +13,8 @@ inputs: default: ${{ github.event.release.tag_name }} update-inner-releases: description: | - Whether to also update releases name linked to `vX` and `vX.Y` tags and set them as latest - if provided tag release is currently the latest release. + Whether to also update releases name linked to `vX` and `vX.Y` tags and set them as latest if provided tag + release is currently the latest release. Will work only on pre-existing releases ! required: false default: 'false'