Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve env vars instructions #60

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ Please note that the issue-bot system run by the `fastlane` core team does not a
3. If you want to test it with actual data, you need to create a GitHub access token by going to https://github.com/settings/tokens, generating a new token and following these steps:

1. create a testing GitHub project
2. update the `SLUG` constant with this new project's path (`<username>/<project name>`)
3. run `export GITHUB_API_TOKEN=<token>`
4. run the steps `2.ii` - `2.v`
2. create a `.keys` file containing:

```bash
export FASTLANE_ISSUE_BOT_SLUG="<github-username>/<repo-name>"
export GITHUB_API_TOKEN="<github-token>"
export ACTION_CHANNEL_SLACK_WEB_HOOK_URL="https://hooks.slack.com/services/<slack-hook-id>"
```

3. run `source .keys`
4. run step `1` or the steps `2.ii` - `2.v`
2 changes: 1 addition & 1 deletion bot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

module Fastlane
class Bot
SLUG = "fastlane/fastlane"
SLUG = ENV['FASTLANE_ISSUE_BOT_SLUG'] || "fastlane/fastlane"
ISSUE_WARNING = 1 # in months
ISSUE_CLOSED = 0.25 # plus the x months from ISSUE_WARNING
ISSUE_LOCK = 2 # lock all issues with no activity within the last 3 months
Expand Down