You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.info(`Disabling ${featureName} as we are on a self-hosted runner.`+getWorkflowEventName()!=="dynamic" ? ` To override this, set the ${envVar} environment variable to 'true' in your workflow (see https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow).` : "");
122
+
logger.info(
123
+
`Disabling ${featureName} as we are on a self-hosted runner.${
124
+
getWorkflowEventName()!=="dynamic"
125
+
? ` To override this, set the ${envVar} environment variable to 'true' in your workflow (see ${envDoc}).`
126
+
: ""
127
+
}`,
128
+
);
121
129
core.exportVariable(envVar,"false");
122
130
}else{
123
-
logger.info(`Enabling ${featureName}. This can be disabled by setting the ${envVar} environment variable to 'false' (see https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow).`);
131
+
logger.info(
132
+
`Enabling ${featureName}. This can be disabled by setting the ${envVar} environment variable to 'false' (see ${envDoc}).`,
0 commit comments