We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c999b7 commit 8287a11Copy full SHA for 8287a11
action.yml
@@ -36,7 +36,7 @@ inputs:
36
runs:
37
using: "composite"
38
steps:
39
- - name: Install action dependencies
+ - name: Install dependencies and run commit-check
40
shell: bash
41
run: |
42
if [[ "$RUNNER_OS" == "Linux" ]]; then
@@ -46,9 +46,7 @@ runs:
46
python3 -m venv venv
47
source venv/bin/activate
48
python3 -m pip install -r "$GITHUB_ACTION_PATH/requirements.txt"
49
- - name: Run commit-check
50
- shell: bash
51
- run: python3 "$GITHUB_ACTION_PATH/main.py"
+ python3 "$GITHUB_ACTION_PATH/main.py"
52
env:
53
MESSAGE: ${{ inputs.message }}
54
BRANCH: ${{ inputs.branch }}
0 commit comments