From 94ad82d6163b7049db7ab8bdf5ddf55ae95b3700 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:37:01 +0530 Subject: [PATCH 1/7] fixes CI to ignore for files with .md ext --- .github/workflows/flutterci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 047ad0bf..6d5bbe96 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -2,14 +2,19 @@ name: Flutter CI on: push: + paths: + - '!**.md' + branches: - main - reports pull_request: + + paths: + - '!**.md' branches: - main - reports - jobs: build: runs-on: ubuntu-latest From fda4dbcb303aa5dc5a18e72bef735e99ec973060 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:44:44 +0530 Subject: [PATCH 2/7] tabs error fix --- .github/workflows/flutterci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 6d5bbe96..36d9c0ad 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -2,16 +2,14 @@ name: Flutter CI on: push: - paths: - - '!**.md' - + paths: + - '!**.md' branches: - main - reports pull_request: - - paths: - - '!**.md' + paths: + - '!**.md' branches: - main - reports From 00eab08a60069894931da2d91a0badd767af70aa Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:56:11 +0530 Subject: [PATCH 3/7] some fix --- .github/workflows/flutterci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 36d9c0ad..27e8e6a8 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -2,14 +2,14 @@ name: Flutter CI on: push: - paths: - - '!**.md' + paths-ignore: + - '**.md' branches: - main - reports pull_request: - paths: - - '!**.md' + paths-ignore: + - '**.md' branches: - main - reports From cfd28fed0bdd40380986cf25d5ecc223a9ce7d4c Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:19:45 +0530 Subject: [PATCH 4/7] also ignore other unrelated files --- .github/workflows/flutterci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 27e8e6a8..41716eb3 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -4,12 +4,16 @@ on: push: paths-ignore: - '**.md' + - '.vscode' + - 'LICENSE' branches: - main - reports pull_request: paths-ignore: - '**.md' + - '.vscode' + - 'LICENSE' branches: - main - reports From c353bdfc378f320f2055e876f8cf4f978118aa36 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:45:31 +0530 Subject: [PATCH 5/7] fix .vscode ignore --- .github/workflows/flutterci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 41716eb3..81d64261 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -4,7 +4,7 @@ on: push: paths-ignore: - '**.md' - - '.vscode' + - '.vscode/' - 'LICENSE' branches: - main @@ -12,7 +12,7 @@ on: pull_request: paths-ignore: - '**.md' - - '.vscode' + - '.vscode/' - 'LICENSE' branches: - main From 9942fa6fcfe68f4688da4928153615a3f6ce7295 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:49:24 +0530 Subject: [PATCH 6/7] fix .vscode --- .github/workflows/flutterci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 81d64261..d64d4de0 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -4,7 +4,7 @@ on: push: paths-ignore: - '**.md' - - '.vscode/' + - '.vscode/**' - 'LICENSE' branches: - main @@ -12,7 +12,7 @@ on: pull_request: paths-ignore: - '**.md' - - '.vscode/' + - '.vscode/**' - 'LICENSE' branches: - main From 1a878c8fd830fda5039b6b87601f4da71b84cc58 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:50:11 +0530 Subject: [PATCH 7/7] Update settings.json --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index d08661f7..91172f00 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + // THIS WILL BE IGNORED // "editor.minimap.enabled": false, "html.format.wrapAttributesIndentSize": 4, "[dart]": { @@ -15,4 +16,4 @@ "editor.codeActionsOnSave": { "source.fixAll": "explicit" } -} \ No newline at end of file +}