Skip to content

Commit

Permalink
chore: dependabot setup (#35)
Browse files Browse the repository at this point in the history
* chore: setup dependabot

* chore: add vscode relay extension recommendation and settings

* chore: use ref_name in push action concurrency settings
  • Loading branch information
PHILLIPS71 authored May 15, 2024
1 parent 02c0064 commit 1733a89
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 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://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "nuget"
directory: "/src"
schedule:
interval: "daily"

- package-ecosystem: "npm"
directory: "/app"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:

concurrency:
group: push-${{ github.ref }}
group: push-${{ github.ref_name }}
cancel-in-progress: true

jobs:
Expand Down
3 changes: 3 additions & 0 deletions app/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["meta.relay"]
}
3 changes: 3 additions & 0 deletions app/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"relay.autoStartCompiler": true
}

0 comments on commit 1733a89

Please sign in to comment.