Skip to content

Commit

Permalink
feat: configure dependabot (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
BBarisKilic authored Oct 11, 2023
2 parents 25cc75d + 927041f commit 65e771e
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 2 deletions.
35 changes: 35 additions & 0 deletions .github/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"version": "0.2",
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"dictionaries": [
"vgv_allowed",
"vgv_forbidden"
],
"dictionaryDefinitions": [
{
"name": "vgv_allowed",
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt",
"description": "Allowed VGV Spellings"
},
{
"name": "vgv_forbidden",
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt",
"description": "Forbidden VGV Spellings"
}
],
"useGitignore": true,
"words": [
"Contador",
"localizable",
"mostrado",
"página",
"Texto",
"Gameplay",
"platformer",
"Saltsman",
"Kronbits",
"Bulent",
"Baris",
"Kilic"
]
}
10 changes: 10 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "daily"
20 changes: 18 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: one_dungeon

on: [pull_request, push]
concurrency:
group: $-$
cancel-in-progress: true

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
semantic-pull-request:
Expand All @@ -10,4 +20,10 @@ jobs:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_channel: stable
flutter_version: 3.10.6

spell-check:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
with:
includes: |
**/*.md
modified_files_only: false

0 comments on commit 65e771e

Please sign in to comment.