lib/danger/ci_source/github_actions.rb in danger-5.11.1 vs lib/danger/ci_source/github_actions.rb in danger-5.12.0
- old
+ new
@@ -1,24 +1,24 @@
require "danger/request_sources/github/github"
module Danger
# ### CI Setup
#
- # You can use `duck8823/actions/danger` Action in your .github/main.workflow.
+ # You can use `danger/danger` Action in your .github/main.workflow.
#
# ```
# action "Danger" {
- # uses = "duck8823/actions/danger"
+ # uses = "danger/danger"
# }
# ```
#
# ### Token Setup
#
# Set DANGER_GITHUB_API_TOKEN to secrets, or you can also use GITHUB_TOKEN.
#
# ```
# action "Danger" {
- # uses = "duck8823/actions/danger"
+ # uses = "danger/danger"
# secrets = ["GITHUB_TOKEN"]
# }
# ```
#
class GitHubActions < CI