forked from envoy/tap-slack
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add bookmarking and new streams to Slack Tap #8
Open
nickcivili
wants to merge
15
commits into
singer-io:master
Choose a base branch
from
gocardless:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 13 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
fcbeb20
Run on Circle without private Docker image
andrewrjones 6556a65
Merge pull request #1 from gocardless/aj-circle
andrewrjones 7be736b
Extract channel list in to a generator
andrewrjones 1a1a984
Allow user to disable private channels
andrewrjones 175c99a
Merge pull request #2 from gocardless/aj-public-channels-only
andrewrjones dd2bbcc
Allow user to specify specific channels
andrewrjones 15353b7
Merge pull request #3 from gocardless/aj-specified-channels
andrewrjones e3c5a53
Added Streams:
74847ad
Adding more documentation, fixing pylint issues.
959a4ef
* Changed up error handling to consolidate into new SlackClient
6301710
* Fix schema and transformation of channels stream.
d08a4da
* Better documentation for Date windowing in README.md
da57a05
Merge pull request #4 from nickcivili/master
andrewrjones 0160ffb
* Fix circleci yaml
a5f8d8d
Merge pull request #5 from nickcivili/master
andrewrjones File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,42 @@ version: 2 | |
jobs: | ||
build: | ||
docker: | ||
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:tap-tester | ||
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:tap-tester-v4 | ||
steps: | ||
- checkout | ||
- run: | ||
name: 'Setup virtual env' | ||
command: | | ||
/root/.pyenv/versions/3.6.9/bin/python -mvenv /usr/local/share/virtualenvs/tap-slack | ||
python3 -mvenv /usr/local/share/virtualenvs/tap-slack | ||
source /usr/local/share/virtualenvs/tap-slack/bin/activate | ||
pip install -U 'pip<19.2' setuptools | ||
pip install .[dev] | ||
- add_ssh_keys | ||
- run: | ||
name: 'pylint' | ||
name: 'Integration Tests' | ||
command: | | ||
source /usr/local/share/virtualenvs/tap-slack/bin/activate | ||
pylint tap_slack -d C,R,W,no-member | ||
aws s3 cp s3://com-stitchdata-dev-deployment-assets/environments/tap-tester/sandbox dev_env.sh | ||
source dev_env.sh | ||
source /usr/local/share/virtualenvs/tap-tester/bin/activate | ||
run-test --tap=tap-slack \ | ||
--target=target-stitch \ | ||
--orchestrator=stitch-orchestrator \ | ||
[email protected] \ | ||
--password=$SANDBOX_PASSWORD \ | ||
--client-id=50 \ | ||
tests | ||
workflows: | ||
version: 2 | ||
commit: | ||
jobs: | ||
- build | ||
build_daily: | ||
triggers: | ||
- schedule: | ||
cron: "0 0 * * *" | ||
filters: | ||
branches: | ||
only: | ||
- master | ||
jobs: | ||
- build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.