Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add dependabot configuration file & update misc repo config #144

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,38 @@
###############################
/packages/hedera-wallet-snap/ @Nana-EC @kpachhai @hashgraph/hedera-smart-contracts @hashgraph/tuum-tech-hedera

#########################
##### Core Files ######
#########################

# NOTE: Must be placed last to ensure enforcement over all other rules

# Protection Rules for Github Configuration Files and Actions Workflows
/.github/ @hashgraph/release-engineering-managers @hashgraph/hedera-smart-contracts-managers

# Top level NPM configuration files
/package.json @hashgraph/release-engineering-managers @hashgraph/hedera-smart-contracts-managers
/package-lock.json @hashgraph/release-engineering-managers @hashgraph/hedera-smart-contracts-managers

# Codacy Tool Configurations
/config/ @hashgraph/release-engineering-managers
.remarkrc @hashgraph/release-engineering-managers
/.prettierrc @hashgraph/hedera-smart-contracts-managers
/.eslintrc.js @hashgraph/release-engineering-managers

# Semantic Release Configuration
.releaserc @hashgraph/release-engineering-managers

# Self-protection for root CODEOWNERS files (this file should not exist and should definitely require approval)
/CODEOWNERS @hashgraph/release-engineering-managers

# Protect the repository root files
/README.md @hashgraph/hedera-smart-contracts-managers
**/LICENSE @hashgraph/hedera-smart-contracts-managers

# CodeCov configuration
**/codecov.yml @hashgraph/release-engineering-managers

# Git Ignore definitions
**/.gitignore @hashgraph/release-engineering-managers @hashgraph/hedera-smart-contracts-managers
**/.gitignore.* @hashgraph/release-engineering-managers @hashgraph/hedera-smart-contracts-managers
50 changes: 50 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "chore"
include: "scope"
open-pull-requests-limit: 15

- package-ecosystem: npm
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "chore"
include: "scope"
versioning-strategy: increase
open-pull-requests-limit: 5

- package-ecosystem: npm
directory: "/packages/hedera-wallet-snap"
schedule:
interval: "daily"
commit-message:
prefix: "chore"
include: "scope"
versioning-strategy: increase
open-pull-requests-limit: 15

- package-ecosystem: npm
directory: "/packages/hedera-wallet-snap/packages/site"
schedule:
interval: "daily"
commit-message:
prefix: "chore"
include: "scope"
versioning-strategy: increase
open-pull-requests-limit: 15

- package-ecosystem: npm
directory: "/packages/hedera-wallet-snap/packages/snap"
schedule:
interval: "daily"
commit-message:
prefix: "chore"
include: "scope"
versioning-strategy: increase
open-pull-requests-limit: 15
9 changes: 9 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Description

This pull request changes the following:

- TBD

### Related Issues

- Closes #
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,9 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# IntelliJ IDEA files
.idea/

# MacOS X Metadata files
.DS_Store
Loading