diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000..89ad4db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,47 @@ +--- + +name: 🐛 Bug Report +about: Template for reporting bugs +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! +--> diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..2e0b496 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -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? +--> \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6825b86 --- /dev/null +++ b/.github/dependabot.yml @@ -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: "/" \ No newline at end of file diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 130c8b5..7b5fa7a 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -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 }} @@ -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 }} @@ -118,7 +118,7 @@ jobs: steps: - name: Checkout main - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Extract branch name shell: bash