Skip to content

Commit

Permalink
Merge branch 'main' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
mckrava committed Aug 29, 2023
2 parents 12e27a5 + a5b100e commit b0de57e
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 3 deletions.
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---

name: 🐛 Bug Report
about: Template for reporting bugs
title: '<title>'
labels: bug
assignees: ''

---

<!--
Note: Please search to see if an issue already exists for the bug you encountered.
-->

### Current Behavior:
<!-- A concise description of what you're experiencing. -->

### Expected Behavior:
<!-- A concise description of what you expected to happen. -->

### Steps To Reproduce:
<!--
Example: steps to reproduce the behavior:
1. In this environment...
1. With this config...
1. Run '...'
1. See error...
-->

## Environment
<!-- What is the environment that the bug happens?
Example:
- OS: Ubuntu 20.04
- Node: 13.14.0
- npm: 7.6.3
-->

## ✔️ Possible solutions
<!-- (This section is optional.)
Any hint on how to solve the issue?
What parts of the code will be affected?
-->

### Anything else:
<!--
Links? References? Anything that will give us more context about the issue that you are encountering!
-->
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: ✨ Feature request
about: Template for requesting new features
title: "<title>"
labels: enhancement
assignees: ""
---

## 📚 Context
<!--
What is the problem that you are trying to solve?
Why is this problem relevant?
-->

## ✔️ Solution
<!--
(This section and the ones below are optional.)
What are the possible solutions?
If there are multiple, what are the benefits and drawbacks of each one?
-->

## 📈 Subtasks
<!--
- [ ] If there is a solution, what are the subtasks for completing this issue?
-->

## 🎯 Definition of Done
<!--
- [ ] If there is a solution, what are the final deliverables?
-->
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
reviewers:
- "oap75"
- "mckrava"
schedule:
interval: "weekly"
commit-message:
prefix: "dependabot"
pull-request-branch-name:
separator: "/"
6 changes: 3 additions & 3 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Build image
if: ${{ github.ref == 'refs/heads/staging' }}
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Build image
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Extract branch name
shell: bash
Expand Down

0 comments on commit b0de57e

Please sign in to comment.