We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffba3fb commit 64ba245Copy full SHA for 64ba245
1 file changed
action.yml
@@ -3,10 +3,8 @@ description: 'Inspect pull request messages with the format "<type>(scope): <sub
3
runs:
4
using: 'composite'
5
steps:
6
- - run: |
7
- curl -Lo go-commitlinter.tar.gz https://github.com/masahiro331/go-commitlinter/releases/download/0.0.2/go-commitlinter_0.0.2_Linux_x86_64.tar.gz
+ - run: curl -Lo go-commitlinter.tar.gz https://github.com/masahiro331/go-commitlinter/releases/download/0.0.2/go-commitlinter_0.0.2_Linux_x86_64.tar.gz && \
8
tar xvfz go-commitlinter.tar.gz
9
- mv go-commitlinter /usr/local/bin/
10
shell: bash
11
- - run: gh pr view $PR | head -n 1 | cut -f 2 | go-commitlinter
+ - run: gh pr view $PR | head -n 1 | cut -f 2 | ./go-commitlinter
12
0 commit comments