Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.

Commit

Permalink
Remove args from readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash258 committed Jul 10, 2019
1 parent e2bb096 commit ee4de4b
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ workflow "Issues" {
}
workflow "Pull requests" {
resolves = ["PullRequestHandler"]
on = "pull_request"
resolves = ["PullRequestHandler"]
}
workflow "Pull requests comment" {
resolves = ["PullRequestHandler"]
on = "issue_comment"
resolves = ["PullRequestHandler"]
}
workflow "Excavator" {
Expand All @@ -77,31 +77,28 @@ workflow "Excavator" {
action "IssueHandler" {
uses = "Ash258/Scoop-GithubActions@stable"
args = "Issue"
secrets = ["GITHUB_TOKEN"]
env = {
"GITH_EMAIL" = "youremail@email.com" # Email is needed for pushing to repository within action container
}
secrets = ["GITHUB_TOKEN"]
}
action "PullRequestHandler" {
uses = "Ash258/Scoop-GithubActions@stable"
args = "PR"
secrets = ["GITHUB_TOKEN"]
env = {
"GITH_EMAIL" = "youremail@email.com"
}
secrets = ["GITHUB_TOKEN"]
}
action "Excavate" {
uses = "Ash258/Scoop-GithubActions@stable"
args = "Scheduled"
secrets = ["GITHUB_TOKEN"]
env = {
"SPECIAL_SNOWFLAKES" = "curl,brotli,jx" # Optional parameter
"SKIP_UPDATED" = "1" # Optional parameter, Could be anything as value
"GITH_EMAIL" = "youremail@email.com"
}
secrets = ["GITHUB_TOKEN"]
}
```

Expand Down

0 comments on commit ee4de4b

Please sign in to comment.