Skip to content

Commit 951e0ed

Browse files
Merge pull request #43 from flutter-form-builder-ecosystem/improve-repository
Improve repository
2 parents 9d20f9c + 01096bc commit 951e0ed

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

.github/dependabot.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
enable-beta-ecosystems: true
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
- package-ecosystem: "pub"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/stale.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "Close stale issues"
2+
on:
3+
schedule:
4+
- cron: "30 1 * * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v5
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days."
14+
close-issue-message: "This issue was closed because it has been stalled for 7 days with no activity."
15+
days-before-stale: 30
16+
days-before-pr-close: -1
17+
any-of-issue-labels: 'awaiting author response'

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ___
1313
- [Use](#use)
1414
- [Setup](#setup)
1515
- [Basic use](#basic-use)
16-
- [Especific uses](#especific-uses)
16+
- [Specific uses](#specific-uses)
1717
- [Support](#support)
1818
- [Contribute](#contribute)
1919
- [Questions and answers](#questions-and-answers)
@@ -28,7 +28,7 @@ ___
2828
- Automatic handle permissions
2929
- Show images preview
3030

31-
## Use
31+
## Usage
3232

3333
### Setup
3434

@@ -66,7 +66,7 @@ Since this package makes use of [file_picker](https://pub.dev/packages/file_pick
6666
),
6767
```
6868

69-
### Especific uses
69+
### Specific uses
7070

7171
On mobile platforms the file picker will open a default document picker if used with `FileType.any`.
7272
If you want to be able to pick documents and images in the same form field, you will need to define different file types and thus different selectors. To achieve this use the `typeSelectors` parameter.
@@ -119,9 +119,9 @@ You have some ways to contribute to this packages
119119

120120
- Beginner: Reporting bugs or request new features
121121
- Intermediate: Implement new features (from issues or not) and created pull requests
122-
- Advanced: Join to [organization](#ecosystem) like a member and help coding, manage issues, dicuss new features and other things
122+
- Advanced: Join the [organization](#ecosystem) like a member and help coding, manage issues, dicuss new features and other things
123123

124-
See [contribution file](https://github.com/flutter-form-builder-ecosystem/.github/blob/main/CONTRIBUTING.md) for more details
124+
See [contribution guide](https://github.com/flutter-form-builder-ecosystem/.github/blob/main/CONTRIBUTING.md) for more details
125125

126126
### Questions and answers
127127

0 commit comments

Comments
 (0)