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 2b4b97b commit 3956c13Copy full SHA for 3956c13
.github/actions/find/src/index.ts
@@ -8,7 +8,7 @@ export default async function () {
8
const urls = core.getMultilineInput("urls", { required: true });
9
core.debug(`Input: 'urls: ${JSON.stringify(urls)}'`);
10
const authContextInput: AuthContextInput = JSON.parse(
11
- core.getInput("auth_context", { required: false }) ?? "{}"
+ core.getInput("auth_context", { required: false }) || "{}"
12
);
13
const authContext = new AuthContext(authContextInput);
14
0 commit comments