diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..a1b487e --- /dev/null +++ b/.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 + + +## Expected behavior + + +## How To Reproduce + + +## Environment + + +## Screenshots + + +## Potential solution + + +## Additional context + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..4564d54 --- /dev/null +++ b/.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? + + +## Describe the solution you'd like + + +## Possible alternatives + + +## Additional context + diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..fe1cfec --- /dev/null +++ b/.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 + + +## What needs to be decided? + + +## Possible solutions + + +## Additional context + diff --git a/.github/main.workflow b/.github/main.workflow index 75a274a..eb6d526 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -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"] } diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..e376a72 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,27 @@ + + +## Description + + +## Related Issue + + + + + +## Screenshots (if appropriate): + +## Types of changes + +- [ ] 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: + + +- [ ] 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. diff --git a/lib/bamboozled/version.rb b/lib/bamboozled/version.rb index 94ac7fa..25113e7 100644 --- a/lib/bamboozled/version.rb +++ b/lib/bamboozled/version.rb @@ -1,3 +1,3 @@ module Bamboozled - VERSION = "0.1.0".freeze + VERSION = "0.2.0".freeze end diff --git a/spec/fixtures/add_employee_xml.yml b/spec/fixtures/add_employee_xml.yml index 51c55e9..4c1ef0b 100644 --- a/spec/fixtures/add_employee_xml.yml +++ b/spec/fixtures/add_employee_xml.yml @@ -4,5 +4,5 @@ headers: Accept: - application/json User-Agent: - - Bamboozled/0.1.0 + - Bamboozled/0.2.0 diff --git a/spec/fixtures/update_employee_xml.yml b/spec/fixtures/update_employee_xml.yml index b5d1f89..bef66f3 100644 --- a/spec/fixtures/update_employee_xml.yml +++ b/spec/fixtures/update_employee_xml.yml @@ -4,5 +4,5 @@ headers: Accept: - application/json User-Agent: - - Bamboozled/0.1.0 + - Bamboozled/0.2.0