From cff25786bf09a24892938a3a591f0d7d8a5cbe8e Mon Sep 17 00:00:00 2001 From: Chris Campbell <808531+ctcampbell@users.noreply.github.com> Date: Tue, 12 Dec 2023 22:32:50 +0000 Subject: [PATCH 1/4] Create dependency-review.yml --- .github/workflows/dependency-review.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/dependency-review.yml diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 0000000..4ba3532 --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,20 @@ +name: 'Dependency review' +on: + pull_request: + branches: + - main + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: 'Checkout repository' + uses: actions/checkout@v4 + - name: 'Dependency Review' + uses: actions/dependency-review-action@v3 + with: + comment-summary-in-pr: true + retry-on-snapshot-warnings: true From 8188847c51e9e48de748d73e64d37ab6f2c71ed1 Mon Sep 17 00:00:00 2001 From: Chris Campbell <808531+ctcampbell@users.noreply.github.com> Date: Tue, 12 Dec 2023 22:43:25 +0000 Subject: [PATCH 2/4] Remove verbose flag from func: host start command --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 914a227..8ae4910 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ { "type": "func", "label": "func: host start", - "command": "host start --verbose", + "command": "host start", "problemMatcher": "$func-node-watch", "isBackground": true, "dependsOn": "npm build (functions)" From 93bf083f96ebb4b5e118fd3b5a81c32b26c1fc67 Mon Sep 17 00:00:00 2001 From: Chris Campbell <808531+ctcampbell@users.noreply.github.com> Date: Tue, 12 Dec 2023 22:54:05 +0000 Subject: [PATCH 3/4] Update settings --- .funcignore | 3 ++- .gitignore | 2 ++ .nvmrc | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 .nvmrc diff --git a/.funcignore b/.funcignore index 97d8545..467fdf6 100644 --- a/.funcignore +++ b/.funcignore @@ -9,4 +9,5 @@ local.settings.json tsconfig.json .env .nvmrc -/src \ No newline at end of file +/src +*.md \ No newline at end of file diff --git a/.gitignore b/.gitignore index 01774db..514f532 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.nvmrc + # Logs logs *.log diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index 3c03207..0000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -18 From d828941c6b98b39c0cf484a9af664ead85d9467c Mon Sep 17 00:00:00 2001 From: Chris Campbell <808531+ctcampbell@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:19:10 +0000 Subject: [PATCH 4/4] Edit settings --- .funcignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.funcignore b/.funcignore index 467fdf6..e190118 100644 --- a/.funcignore +++ b/.funcignore @@ -10,4 +10,5 @@ tsconfig.json .env .nvmrc /src -*.md \ No newline at end of file +*.md +*.txt \ No newline at end of file