From b43d19c580e33fdfdc7f37e3dc742cc841d47b45 Mon Sep 17 00:00:00 2001 From: Juriba Date: Fri, 23 Aug 2024 01:34:49 +0300 Subject: [PATCH] add pr template and dependabot --- .github/dependabot.yaml | 31 +++++++++++++++++++++++++++++++ .github/pull_request_template.md | 24 ++++++++++++++++++++++++ .github/workflows/ci.yml | 2 ++ 3 files changed, 57 insertions(+) create mode 100644 .github/dependabot.yaml create mode 100644 .github/pull_request_template.md diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..4c5d3f2 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,31 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + target-branch: "dev" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "github-actions" + reviewers: + - "JuribaDev" + assignees: + - "JuribaDev" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + target-branch: "dev" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "npm" + reviewers: + - "JuribaDev" + assignees: + - "JuribaDev" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..0ac94eb --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,24 @@ + + +## Description + + + +## Type of Change + + + +- [ ] โœจ New feature (non-breaking change which adds functionality) +- [ ] ๐Ÿ› ๏ธ Bug fix (non-breaking change which fixes an issue) +- [ ] ๐Ÿงช Add new test +- [ ] โŒ Breaking change (fix or feature that would cause existing functionality to change) +- [ ] ๐Ÿงน Code refactor +- [ ] โœ… Build configuration change +- [ ] ๐Ÿ“ Documentation +- [ ] ๐Ÿ—‘๏ธ Chore diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6196e5c..c47be1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,11 @@ on: push: branches: - main + - dev pull_request: branches: - main + - dev permissions: actions: read