From 9847540d34331e15b487b8b0b1fc08911a6a1c30 Mon Sep 17 00:00:00 2001 From: oap75 Date: Tue, 22 Aug 2023 09:23:39 +0300 Subject: [PATCH 1/4] feat: add dependabot --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml 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 From 245aa13c6547a123b594b1a98b523ff2c4e8dc9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 07:50:39 +0000 Subject: [PATCH 2/4] dependabot: bump docker/build-push-action from 3 to 4 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3...v4) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 130c8b5..f7f68a1 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 }} From 417508293d874dbbd4ab17b2f0aa1af6b45d932e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 07:50:42 +0000 Subject: [PATCH 3/4] dependabot: bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 130c8b5..6f5dcba 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -118,7 +118,7 @@ jobs: steps: - name: Checkout main - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Extract branch name shell: bash From b8a989a55b1a4c5d566f14feb4b54c545af2734c Mon Sep 17 00:00:00 2001 From: oap75 Date: Wed, 23 Aug 2023 11:19:59 +0300 Subject: [PATCH 4/4] feat: add issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 47 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 30 +++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md 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