diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..103547f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,31 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "pub" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "pub" + directory: "/packages/breakpoint" + schedule: + interval: "daily" + + - package-ecosystem: "pub" + directory: "/packages/flutter_sms" + schedule: + interval: "daily" + + - package-ecosystem: "pub" + directory: "/packages/flutter_vibrate" + schedule: + interval: "daily" + + - package-ecosystem: "pub" + directory: "/packages/flutter_whatsnew" + schedule: + interval: "daily" diff --git a/packages/breakpoint/.github/workflows/main.yml b/packages/breakpoint/.github/workflows/main.yml deleted file mode 100644 index 1c693cc..0000000 --- a/packages/breakpoint/.github/workflows/main.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: github pages - -on: - push: - branches: - - master - -jobs: - deploy: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - - name: Setup Flutter - uses: subosito/flutter-action@v1 - with: - channel: 'dev' - - - name: Install - run: | - flutter config --enable-web - flutter pub get - - name: Build - run: cd example && flutter build web - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./example/build/web diff --git a/packages/breakpoint/.vscode/launch.json b/packages/breakpoint/.vscode/launch.json deleted file mode 100644 index 9f8693f..0000000 --- a/packages/breakpoint/.vscode/launch.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Flutter", - "request": "launch", - "type": "dart", - "program": "example/lib/main.dart" - } - ] -} \ No newline at end of file diff --git a/packages/flutter_whatsnew/.github/workflows/main.yml b/packages/flutter_whatsnew/.github/workflows/main.yml deleted file mode 100644 index b60a0fc..0000000 --- a/packages/flutter_whatsnew/.github/workflows/main.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: github pages - -on: - push: - branches: - - master - -jobs: - deploy: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - - name: Setup Flutter - uses: subosito/flutter-action@v1 - with: - channel: 'dev' - - - name: Install - run: | - flutter config --enable-web - flutter pub get - - name: Build - run: cd example && flutter build web - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: -# github_token: ${{ secrets.GITHUB_TOKEN }} - # personal_token: ${{ secrets.PERSONAL_TOKEN }} - deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} - publish_dir: ./example/build/web