Skip to content

Commit

Permalink
Create dependabot.yml (#1)
Browse files Browse the repository at this point in the history
* Create dependabot.yml

* update .gitignore

* update directory paths

* update workflows

* pin previous Flutter version, update workflow
  • Loading branch information
jamieastley authored Feb 16, 2024
1 parent 6809e7d commit a37cd66
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 7 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
updates:
- package-ecosystem: "pub"
directory: "/packages/pop_pop"
schedule:
interval: "daily"
commit-message:
prefix: "[Update pop_pop]"

- package-ecosystem: "pub"
directory: "/packages/pop_pop_components"
schedule:
interval: "daily"
commit-message:
prefix: "[Update pop_pop_components]"
1 change: 1 addition & 0 deletions .github/workflows/pop_pop_components_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.8.1'
channel: "stable"

- run: flutter pub get
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name: pop_pop_components_analyze
name: pop_pop_components_test

on:
push:
branches:
- master
paths:
- "packages/pop_pop_components/**"
- ".github/workflows/pop_pop_components_analyze.yaml"
- ".github/workflows/**"

pull_request:
paths:
- "packages/pop_pop_components/**"
- ".github/workflows/pop_pop_components_analyze.yaml"
- ".github/workflows/**"

jobs:
analyze_test:
Expand All @@ -26,6 +28,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.8.1'
channel: "stable"

- run: flutter pub get
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pop_pop_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.8.1'
channel: "stable"

- run: flutter pub get
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name: pop_pop_analyze
name: pop_pop_test

on:
push:
branches:
- master
paths:
- "packages/pop_pop/**"
- ".github/workflows/pop_pop_analyze.yaml"
- ".github/workflows/**"

pull_request:
paths:
- "packages/pop_pop/**"
- ".github/workflows/pop_pop_analyze.yaml"
- ".github/workflows/**"

jobs:
test:
Expand All @@ -26,6 +28,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.8.1'
channel: "stable"

- run: flutter pub get
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.vscode/launch.json
.vscode/settings.json
.vscode/settings.json
.idea

0 comments on commit a37cd66

Please sign in to comment.