Skip to content

Commit

Permalink
chore: reduce dependabot freq, add issue template (#318)
Browse files Browse the repository at this point in the history
* chore: reduce dependabot freq, add issue template

* fix: remove sqlfmt language in issue template
  • Loading branch information
tconbeer authored Nov 10, 2023
1 parent 2fbe863 commit 859a7d4
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 7 deletions.
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Bug Report
about: Report a bug in Harlequin.
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior.

**Expected behavior**
A clear and concise description of what you expected to happen.

**Actual behavior**
A clear and concise description of what happened; please include screenshots or animated gifs of Harlequin if possible.

**Additional context**
What is the output of `harlequin --version`?

What database adapter are you using with Harlequin? (Default is DuckDB)

Can you tell us more about your system?
- Shell:
- Terminal:
- OS of the shell:
- OS of the terminal (if different from the shell):

For example, for my system, these are:
- Bash
- Windows Terminal
- Ubuntu 22.04 / WSL2
- Windows 11
11 changes: 5 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "monthly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.PHONY: check
check:
black .
pytest -m "not online"
ruff . --fix
pytest -m "not online"
mypy

.PHONY: lint
Expand Down

0 comments on commit 859a7d4

Please sign in to comment.