Skip to content

Commit

Permalink
Fix & improve
Browse files Browse the repository at this point in the history
  • Loading branch information
yoanm committed Aug 25, 2024
1 parent ec5d4d8 commit fa6e493
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions .github/yamllint-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---

extends: default

rules:
line-length:
max: 120
level: warning
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit fa6e493

Please sign in to comment.