Support GitHub Actions
See original GitHub issueIssue Description
This would make it much easier to switch CI to run on GitHub. This woked for me:
action "Push Coverage" {
uses = "docker://node:11"
needs = ["Only Branch Pushes"]
secrets = ["CODECOV_TOKEN"]
runs = "bash -c"
args = ["npx codecov --disable=detect --commit=$GITHUB_SHA --branch=${GITHUB_REF#refs/heads/}"]
}
It would be even cooler if you offered an Action that could be run on any project (Node or otherwise)!
action "Push Coverage" {
uses = "codecov/action@master"
needs = ["Test"]
secrets = ["CODECOV_TOKEN"]
}
Issue Analytics
- State:
- Created 4 years ago
- Reactions:17
- Comments:16 (4 by maintainers)
Top Results From Across the Web
GitHub Actions Support
GitHub Support is here to help. Learn about GitHub products, browse our helpful resources, and contact support with your questions.
Read more >GitHub Actions Documentation
Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. You can discover, create, and share ...
Read more >Support Requests · Actions · GitHub Marketplace
Support Requests is a GitHub Action that comments on and closes issues labeled as support requests. Supporting the Project. The continued development of...
Read more >Understanding GitHub Actions
Use an action to help reduce the amount of repetitive code that you write in your workflow files. An action can pull your...
Read more >Guides for GitHub Actions - GitHub Docs
GitHub Actions guides ... These guides for GitHub Actions include specific use cases and examples to help you configure workflows. Get started with...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@jerrode do you have an update for this? Codecov still doesn’t seem to work on github actions without a token (which means it doesn’t work in forks for PRs).
Thanks @j-f1 ! Github Actions is in the product pipeline for this quarter