Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ 'develop' ]
paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai bot Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: The '**.txt' (or '**/*.txt') pattern was dropped from paths-ignore. Changes to .txt files (e.g., LICENSE.txt, NOTICE.txt) will now unnecessarily trigger this workflow, contradicting the PR's goal of reducing CI runs on non-code changes.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/codeql.yml, line 9:

<comment>The `'**.txt'` (or `'**/*.txt'`) pattern was dropped from `paths-ignore`. Changes to `.txt` files (e.g., `LICENSE.txt`, `NOTICE.txt`) will now unnecessarily trigger this workflow, contradicting the PR's goal of reducing CI runs on non-code changes.</comment>

<file context>
@@ -6,18 +6,9 @@ on:
-      - '.github/ISSUE_TEMPLATE/**'
-      - '.github/PULL_REQUEST_TEMPLATE/**'
-      - '.github/CODEOWNERS'
+    paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
+                    '.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
+                    '.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]
</file context>
Suggested change
paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
paths-ignore: [ '**/*.md', '**/*.txt', '.gitignore', '**/.gitignore', '.editorconfig',
Fix with Cubic

'.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
'.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]
schedule:
- cron: '6 10 * * 0'

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
pull_request:
branches: [ 'master','develop', 'release_**' ]
types: [ opened, synchronize, reopened ]
paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
'.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
'.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]
workflow_dispatch:
inputs:
job:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/system-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [ 'develop', 'release_**' ]
types: [ opened, synchronize, reopened ]
paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai bot Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: The '**/*.txt' pattern was dropped from paths-ignore, so .txt-only changes will now trigger this workflow. This appears to be an accidental omission during the reformatting — the old list had '**.txt'.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/system-test.yml, line 9:

<comment>The `'**/*.txt'` pattern was dropped from `paths-ignore`, so `.txt`-only changes will now trigger this workflow. This appears to be an accidental omission during the reformatting — the old list had `'**.txt'`.</comment>

<file context>
@@ -6,18 +6,9 @@ on:
-      - '.github/ISSUE_TEMPLATE/**'
-      - '.github/PULL_REQUEST_TEMPLATE/**'
-      - '.github/CODEOWNERS'
+    paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
+                    '.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
+                    '.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]
</file context>
Suggested change
paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
paths-ignore: [ '**/*.md', '**/*.txt', '.gitignore', '**/.gitignore', '.editorconfig',
Fix with Cubic

'.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
'.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
Loading