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 0c6338c commit db3f871Copy full SHA for db3f871
.github/workflows/ValidatePullRequest.yml
@@ -30,8 +30,10 @@ jobs:
30
id: docs-only
31
with:
32
script: |
33
+ const core = require('@actions/core');
34
let docs_file_count = ${{steps.changes.outputs.docs_count}};
35
let all_file_count = ${{steps.changes.outputs.all_count}};
36
+ core.notice(`docs-only: {all_file_count} == {docs_file_count}`);
37
return all_file_count === docs_file_count;
38
result-encoding: string
39
0 commit comments