1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-03 15:00:06 +02:00
This commit is contained in:
François Hodierne 2019-12-12 14:38:05 +00:00 committed by GitHub
commit 0f42a024b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 41 additions and 3 deletions

View file

@ -62,6 +62,10 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
# Whether to download Git-LFS files
# Default: false
lfs: ''
# Whether to silent failure
# Default: false
silentFailure: ''
```
<!-- end usage -->

View file

@ -1,6 +1,6 @@
name: 'Checkout'
description: 'Checkout a Git repository at a particular version'
inputs:
inputs:
repository:
description: 'Repository name with owner. For example, actions/checkout'
default: ${{ github.repository }}
@ -23,6 +23,12 @@ inputs:
lfs:
description: 'Whether to download Git-LFS files'
default: false
silentFailure:
description: 'Whether to silent failure'
default: false
outputs:
failure:
description: 'A boolean value to indicate if the checkout failed'
runs:
using: node12
main: dist/index.js

16
dist/index.js vendored
View file

@ -2611,7 +2611,18 @@ function run() {
// Register problem matcher
coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json'));
// Get sources
yield gitSourceProvider.getSource(sourceSettings);
try {
yield gitSourceProvider.getSource(sourceSettings);
}
catch (error) {
core.setOutput('failure', 'true');
if (sourceSettings.silentFailure) {
core.info(`Silent Failure: ${error.message}`);
}
else {
throw error;
}
}
}
finally {
// Unregister problem matcher
@ -10405,6 +10416,9 @@ function getInputs() {
core.debug(`lfs = ${result.lfs}`);
// Access token
result.accessToken = core.getInput('token');
// Silent Failure
result.silentFailure =
(core.getInput('silentFailure') || 'false').toUpperCase() === 'TRUE';
return result;
}
exports.getInputs = getInputs;

View file

@ -20,6 +20,7 @@ export interface ISourceSettings {
fetchDepth: number
lfs: boolean
accessToken: string
silentFailure: boolean
}
export async function getSource(settings: ISourceSettings): Promise<void> {

View file

@ -100,5 +100,9 @@ export function getInputs(): ISourceSettings {
// Access token
result.accessToken = core.getInput('token')
// Silent Failure
result.silentFailure =
(core.getInput('silentFailure') || 'false').toUpperCase() === 'TRUE'
return result
}

View file

@ -19,7 +19,16 @@ async function run(): Promise<void> {
)
// Get sources
await gitSourceProvider.getSource(sourceSettings)
try {
await gitSourceProvider.getSource(sourceSettings)
} catch (error) {
core.setOutput('failure', 'true')
if (sourceSettings.silentFailure) {
core.info(`Silent Failure: ${error.message}`)
} else {
throw error
}
}
} finally {
// Unregister problem matcher
coreCommand.issueCommand('remove-matcher', {owner: 'checkout-git'}, '')