We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad261a2 commit 94e376cCopy full SHA for 94e376c
.github/workflows/pr-autofix.yml
@@ -23,13 +23,13 @@ jobs:
23
24
then
25
26
- echo "::set-output name=changed::true"
+ echo "changed=true" >> $GITHUB_OUTPUT
27
28
exit 0
29
30
fi
31
32
- echo "::set-output name=changed::false"
+ echo "changed=false" >> $GITHUB_OUTPUT
33
34
35
src/execCmd.js
@@ -4,7 +4,7 @@ const exec = require('@actions/exec'); //flow-uncovered-line
4
5
/**
6
* @desc Asynchronously calls @actions/exec to execute a command.
7
- * @param cmd - Command that we are calling.
+ * @param cmd - The command that we are calling.
8
* @param args - List of arguments to call with the command.
9
* @throws if the command errors.
10
*/
0 commit comments