-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Feature/support bazarr #214
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
1c19cdf
remove the branch requirement to run tests
phyzical 376ad1b
lint makefile
phyzical 2f87008
add bazarr to readme
phyzical cbbcc5e
also comment out release image as we only want tests to happen
phyzical bb45c0d
initial changes to start attempting to pull bazarr i thinnk?
phyzical ffe95c5
make it only run the tests, but skip release image
phyzical 8615eab
add a genric makefile to build container localy, run and test
phyzical c277a68
rename build command
phyzical 9459374
add pic and grafana dashboard adjustments
phyzical 41f16d9
refactor metrics to just be contained within 1 class
phyzical 7c4bcce
add logic to allow csv values to params
phyzical 099f367
remove some todos
phyzical 5a928d5
make api version optional
phyzical 2c79ae1
adjust makefile to auto kill and start
phyzical be603a5
remove now invalid test
phyzical 90b2c90
add a test for no api version instead
phyzical f5e33fd
add a test to enforce csv params moving forward
phyzical 1407062
add saml payloads for all endpoints, add test that mocks and verifies…
phyzical 8cba7cf
Update .env.dist
onedr0p c7345f0
Update .gitignore
onedr0p e8d3181
Update internal/client/client.go
phyzical 374431e
add a tidy task
phyzical c6930a7
Merge branch 'feature/support-bazarr' of github.com:phyzical/exportar…
phyzical 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
APP_API_KEY=RADARR_API_KEY | ||
APP_URL=RADARR_URL | ||
APP_NAME=radarr |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,6 @@ | |
# Operating System | ||
.DS_Store | ||
**/.DS_Store | ||
|
||
.env | ||
covprofile |
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.
These changes should mean it'll run the tests per commit but shouldn't try to make a release.
Can revert if preferred
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.
Looks good to me!
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.
wait, actually -- this change is a problem :-/ . The
on
conditions in an action are anOR
between it's children, so it was already running on pushes tomaster
ORpull_requests
, with the if condition here ensuring that we only released images on a push to master.So what this change is actually doing is making it so that we'll only run this workflow on pull_requests, and therefore never build images inside this workflow (so the only built images would come from the tagged release workflow, we'd have no updates to the
master
tag).Let's revert this file, everything else looks good.