Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
BLD:set dependabot, codeowner, pr template and others
Browse files Browse the repository at this point in the history
  • Loading branch information
developerasun committed Nov 20, 2022
1 parent 3a8d2bc commit e935b29
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# These owners will be the default owners for everything in the repo.
* @developerasun
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
assignees:
- developerasun
body:
- type: markdown
attributes:
value: |
@asunlabs/owlly bug report
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Describe what went wrong and what was supposed to happen
placeholder: Enter your description here
value: "A bug happened!"
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: bash
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
time: "09:00"
open-pull-requests-limit: 3
reviewers:
- "developerasun"
labels:
- "dependencies"
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Pull request format

This is a PR format for Owlly project.

## What's changed

**description**

1.
1.

**Linked issue(optional)**: #

**Screenshot/Clips(optional)**

- content here

## Checklist

- [ ] Follow this project's commit convention
- [ ] Follow this project's branch strategy convention
- [ ] Set label
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 10
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 3
# Issues with these labels will never be considered stale
exemptLabels:
- backlog
- roadmap
# Label to use when marking an issue as stale
staleLabel: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: auto release
on:
push:
tags:
- v*
- ver*

jobs:
release:
Expand Down

0 comments on commit e935b29

Please sign in to comment.