Skip to content

Commit

Permalink
Merge pull request #58 from Skookum/develop
Browse files Browse the repository at this point in the history
Merging v0.2.0 into master
  • Loading branch information
chrisman committed Apr 2, 2019
2 parents a920b78 + 4519ec4 commit 5c1b252
Show file tree
Hide file tree
Showing 8 changed files with 109 additions and 5 deletions.
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,39 @@
---
name: '🐛 Bug Report'
about: "When something's not working as expected 🤔"
title: '🐛'
labels: 'bug'
assignees: ''
---

## Description
<!-- A clear and concise description of what the bug is. //-->

## Expected behavior
<!-- A clear and concise description of what you expected to happen. //-->

## How To Reproduce
<!--
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
//-->

## Environment
<!--
- Device: [e.g. iPhone6]
- OS: [e.g. iOS, macOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
//-->

## Screenshots
<!-- If applicable, add screenshots/gifs to help explain your problem. //-->

## Potential solution
<!-- Do you have any ideas about how to fix this bug? //-->

## Additional context
<!-- Add any other context about the problem here. //-->
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,19 @@
---
name: '🚀 New feature'
about: 'Suggest a shiny new idea for this project ✨'
title: '🚀'
labels: 'enhancement'
assignees: ''
---

## What problem does this solve?
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] //-->

## Describe the solution you'd like
<!-- A clear and concise description of what you want to happen. //-->

## Possible alternatives
<!-- A clear and concise description of any alternative solutions or features you've considered. //-->

## Additional context
<!-- Add any other context or screenshots about the feature request here. //-->
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
@@ -0,0 +1,19 @@
---
name: '🗣 Question'
about: 'Begin a discussion, with the intention to reach a decision'
title: '🗣'
labels: 'question'
assignees: ''
---

## Describe the problem
<!-- A clear and concise description of what the problem is. Ex. Our CI pipeline is slow and it [...] //-->

## What needs to be decided?
<!-- The question that, once answered, will end the discussion. Ex. What branching strategy should we use?, Ex. How can we increase our number of dev contributions? //-->

## Possible solutions
<!-- A clear and concise description of possible resolutions. //-->

## Additional context
<!-- Add any other context or screenshots here. //-->
4 changes: 2 additions & 2 deletions .github/main.workflow
Expand Up @@ -33,6 +33,6 @@ action "Build the gem" {
action "Push the gem" {
uses = "scarhand/actions-ruby@master"
needs = ["Build the gem"]
args = "push *.gem --key $RUBY_GEM_API_KEY"
secrets = ["RUBY_GEM_API_KEY"]
args = "push *.gem"
secrets = ["RUBYGEMS_AUTH_TOKEN"]
}
27 changes: 27 additions & 0 deletions .github/pull_request_template.md
@@ -0,0 +1,27 @@
<!--- Provide a general summary of your changes in the Title above -->

## Description
<!--- Describe your changes in detail -->

## Related Issue
<!--- This project only accepts pull requests related to open issues -->
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->

## Screenshots (if appropriate):

## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] My code follows the code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.
2 changes: 1 addition & 1 deletion lib/bamboozled/version.rb
@@ -1,3 +1,3 @@
module Bamboozled
VERSION = "0.1.0".freeze
VERSION = "0.2.0".freeze
end
2 changes: 1 addition & 1 deletion spec/fixtures/add_employee_xml.yml
Expand Up @@ -4,5 +4,5 @@ headers:
Accept:
- application/json
User-Agent:
- Bamboozled/0.1.0
- Bamboozled/0.2.0

2 changes: 1 addition & 1 deletion spec/fixtures/update_employee_xml.yml
Expand Up @@ -4,5 +4,5 @@ headers:
Accept:
- application/json
User-Agent:
- Bamboozled/0.1.0
- Bamboozled/0.2.0

0 comments on commit 5c1b252

Please sign in to comment.