Skip to content

Commit

Permalink
Document Support for GitHub Actions Badges
Browse files Browse the repository at this point in the history
This is implemented here: rust-lang/crates.io#1838
  • Loading branch information
CryZe authored Oct 28, 2019
1 parent 759431f commit 672bea9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/doc/src/reference/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ license-file = "..."
# Optional specification of badges to be displayed on crates.io.
#
# - The badges pertaining to build status that are currently available are
# Appveyor, CircleCI, Cirrus CI, GitLab, Azure DevOps and TravisCI.
# Appveyor, CircleCI, Cirrus CI, GitHub Actions, GitLab, Azure DevOps and
# TravisCI.
# - Available badges pertaining to code test coverage are Codecov and
# Coveralls.
# - There are also maintenance-related badges based on isitmaintained.com
Expand All @@ -293,6 +294,9 @@ circle-ci = { repository = "...", branch = "master" }
# Cirrus CI: `repository` is required. `branch` is optional; default is `master`
cirrus-ci = { repository = "...", branch = "master" }

# GitHub Actions: `repository` and `workflow` are required.
github-actions = { repository = "...", workflow = "..." }

# GitLab: `repository` is required. `branch` is optional; default is `master`
gitlab = { repository = "...", branch = "master" }

Expand Down

0 comments on commit 672bea9

Please sign in to comment.