From d589f86a4a34256f098d6b67651d0c296a37d995 Mon Sep 17 00:00:00 2001 From: Ahmed Elsakaan Date: Tue, 31 Oct 2023 20:46:56 +0000 Subject: [PATCH 1/5] feat: new CI workflow --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8995adb3..8a331c3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,12 @@ on: push: branches: - main - pull_request: + pull_request_target: + branches: + - main + paths-ignore: + - ".vscode/**" + - "*.md" env: # Database @@ -28,6 +33,7 @@ jobs: main: name: CI runs-on: ubuntu-latest + environment: CI steps: - name: Checkout uses: actions/checkout@v4 From fe891af3e1462899088074861701f0b6ece9bdee Mon Sep 17 00:00:00 2001 From: Erlend <49862976+Erb3@users.noreply.github.com> Date: Tue, 31 Oct 2023 21:59:56 +0100 Subject: [PATCH 2/5] Remove default title in issue templates (#328) The default title prefixes the issue title with `[BUG]` or `[FEAT]`. If there is a reason to do this, feel free to just close the PR, however I see no reason that this should be here considering we have labels for filtering. The `bug` and `enhancement` labels are automatically applied when using the issue templates. --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 8e63052e..e9534ed4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Create a report to help us improve -title: "[BUG]" +title: "" labels: bug assignees: "" --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a8d14802..d883b8f2 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,7 +1,7 @@ --- name: Feature request about: Suggest an idea for this project -title: "[FEAT]" +title: "" labels: enhancement assignees: "" --- From 90ffc5dd26fdec76f3b0fb684758a25d3c19a051 Mon Sep 17 00:00:00 2001 From: Erlend <49862976+Erb3@users.noreply.github.com> Date: Tue, 31 Oct 2023 22:46:13 +0100 Subject: [PATCH 3/5] Make email address optional (#334) Co-authored-by: Ahmed Elsakaan --- src/app/(dashboard)/_components/side-menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(dashboard)/_components/side-menu.tsx b/src/app/(dashboard)/_components/side-menu.tsx index 04227788..5a436dbb 100644 --- a/src/app/(dashboard)/_components/side-menu.tsx +++ b/src/app/(dashboard)/_components/side-menu.tsx @@ -33,7 +33,7 @@ export const DashboardSideMenu = async () => {