From 56abf3c87a782ac30a3f52fc47c215d70fd1aff8 Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Thu, 4 Nov 2021 14:23:13 -0400 Subject: [PATCH] [flutter_markdown] Remove previous-repo cruft (#507) When migrating this package from its own repository, I accidentally included the .github directory. This serves no purpose in a subdirectory, so should not exist. --- .../.github/ISSUE_TEMPLATE/bug_report.md | 24 ------------- .../.github/ISSUE_TEMPLATE/config.yml | 3 -- .../.github/ISSUE_TEMPLATE/feature_request.md | 20 ----------- .../.github/ISSUE_TEMPLATE/other_issue.md | 11 ------ .../.github/pull_request_template.md | 23 ------------ .../.github/workflows/flutter_ci.yml | 35 ------------------- 6 files changed, 116 deletions(-) delete mode 100644 packages/flutter_markdown/.github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 packages/flutter_markdown/.github/ISSUE_TEMPLATE/config.yml delete mode 100644 packages/flutter_markdown/.github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 packages/flutter_markdown/.github/ISSUE_TEMPLATE/other_issue.md delete mode 100644 packages/flutter_markdown/.github/pull_request_template.md delete mode 100644 packages/flutter_markdown/.github/workflows/flutter_ci.yml diff --git a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/bug_report.md b/packages/flutter_markdown/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 4e9254e777..0000000000 --- a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug report -about: Create an issue to report a bug -title: 'Bug: ' -labels: '' -assignees: '' - ---- - -**Describe the bug** -Please provide a clear and concise description of the bug. - -**How to reproduce** -Steps to reproduce the behavior: -1. - -**Expected behavior** -A description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain the problem. - -**Additional context** -Add any other context about the problem here. diff --git a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/config.yml b/packages/flutter_markdown/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 09d8e31088..0000000000 --- a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,3 +0,0 @@ -# Use one of the three issue templates provided. The "Other issue" -# template should be used instead of a blank issue. -blank_issues_enabled: false \ No newline at end of file diff --git a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/feature_request.md b/packages/flutter_markdown/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 93e105c34f..0000000000 --- a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an feature enhancement or new functionality -title: 'Feature: ' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of the problem. - -**Describe a possible solution.** -Do you have a possible solution or approach you think should be considered? - -**Describe possible alternatives.** -Are there possible alternative solutions or features. - -**Additional context.** -List any additional context or screenshots about the feature request here. diff --git a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/other_issue.md b/packages/flutter_markdown/.github/ISSUE_TEMPLATE/other_issue.md deleted file mode 100644 index 92d3fda17a..0000000000 --- a/packages/flutter_markdown/.github/ISSUE_TEMPLATE/other_issue.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Other issue -about: Issues that are not bugs or feature requests. -title: '' -labels: '' -assignees: '' - ---- - -**Describe the issue** -Please provide a clear and concise description of the issue. diff --git a/packages/flutter_markdown/.github/pull_request_template.md b/packages/flutter_markdown/.github/pull_request_template.md deleted file mode 100644 index e819a48d1c..0000000000 --- a/packages/flutter_markdown/.github/pull_request_template.md +++ /dev/null @@ -1,23 +0,0 @@ -**IMPORTANT: Please do not create a Pull Request without creating an issue first.** - -*Any change needs to be discussed before proceeding. Failure to do so may result in the rejection of the pull request.* - -Please provide enough information so that others can review your pull request: - - - -**Test plan (required)** - - - -**Closing issues** - - - -**Additional considerations** - - \ No newline at end of file diff --git a/packages/flutter_markdown/.github/workflows/flutter_ci.yml b/packages/flutter_markdown/.github/workflows/flutter_ci.yml deleted file mode 100644 index 12e1facb5c..0000000000 --- a/packages/flutter_markdown/.github/workflows/flutter_ci.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: flutter_markdown - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - workflow_dispatch: - schedule: - - cron: '0 0 * * *' # Every day at midnight - -defaults: - run: - shell: bash - -jobs: - flutter-tests: - name: Test Flutter ${{ matrix.flutter_version }} on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - flutter_version: [dev, beta] # Disable stable until Null Safety goes stable - os: [ubuntu-latest, macos-latest, windows-latest] - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v1 - with: - java-version: '12.x' - - uses: subosito/flutter-action@v1 - with: - channel: ${{ matrix.flutter_version }} - - run: flutter analyze - - run: flutter format --dry-run --set-exit-if-changed . - - run: flutter test