diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 6db9b78d..ebe8efde 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -12,6 +12,7 @@ jobs: - name: Run Committed uses: ./ with: + args: "-vv" commits: "HEAD" run_pr: name: Lint Commits (PR) @@ -24,6 +25,3 @@ jobs: fetch-depth: 0 - name: Run Committed uses: ./ - with: - args: "-vv --no-merge-commit" - commits: "HEAD~..HEAD^2" diff --git a/action.yml b/action.yml index c1c53ee9..46f5e201 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,7 @@ inputs: args: description: "arguments for committed" required: false - default: "" + default: "-vv --no-merge-commit" commits: description: "commit range to check" required: false