Compare commits

..

5 Commits

Author SHA1 Message Date
Thomas Hu
6004246f47 Merge pull request #114 from codecov/timeouts
Add more timeout tries and decrease timeout time
2020-08-17 22:13:50 -04:00
Thomas Hu
5d3f01ccdc Up the number of attempts 2020-08-17 17:14:51 -04:00
Thomas Hu
2d80980946 Add more timeouts and sharter timeout 2020-08-17 17:05:37 -04:00
Thomas Hu
fadbb25281 Merge pull request #109 from ibrahim0814/patch-1
Update action.yml with new authors
2020-08-12 13:09:38 -04:00
Ibrahim Ali
ad774549da Update action.yml with new authors
Add Thomas Hu as new author 👍
2020-08-12 00:15:12 -07:00
5 changed files with 11 additions and 10 deletions

View File

@@ -1,8 +1,5 @@
name: Workflow for Codecov Action
on:
push:
branches: master
pull_request:
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest

View File

@@ -1,6 +1,6 @@
name: 'Codecov'
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
author: 'Ibrahim Ali <@ibrahim0814> & Thomas Hu <@thomasrockhu> | Codecov'
inputs:
name:
description: 'User defined upload name. Visible in Codecov UI'

6
dist/index.js vendored
View File

@@ -2233,8 +2233,10 @@ try {
}
request({
url: "https://codecov.io/bash",
json: false
json: false,
maxAttempts: 10,
timeout: 3000,
url: "https://codecov.io/bash"
}, (error, response, body) => {
try {
if (error && fail_ci) {

View File

@@ -29,8 +29,10 @@ try {
}
request({
url: "https://codecov.io/bash",
json: false
json: false,
maxAttempts: 10,
timeout: 3000,
url: "https://codecov.io/bash"
}, (error, response, body) => {
try {
if (error && fail_ci) {

View File

@@ -1,6 +1,6 @@
{
"name": "codecov-action",
"version": "1.0.12",
"version": "1.0.13",
"description": "Upload coverage reports to Codecov from GitHub Actions",
"main": "index.js",
"scripts": {