Skip to content

Skip CI when no code changes (e.g. .rs, .toml, or any other file affecting compilation) are made.#391

Merged
romancardenas merged 7 commits intorust-embedded:masterfrom
KushalMeghani1644:skip-CI
Apr 15, 2026
Merged

Skip CI when no code changes (e.g. .rs, .toml, or any other file affecting compilation) are made.#391
romancardenas merged 7 commits intorust-embedded:masterfrom
KushalMeghani1644:skip-CI

Conversation

@KushalMeghani1644
Copy link
Copy Markdown
Contributor

This PR tends to resolve issue #381

@KushalMeghani1644 KushalMeghani1644 requested a review from a team as a code owner February 27, 2026 14:17
Comment thread .github/workflows/clippy.yaml Outdated
Co-authored-by: Román Cárdenas Rodríguez <rcardenas.rod@gmail.com>
@romancardenas
Copy link
Copy Markdown
Contributor

Hey @KushalMeghani1644

I would apply my suggestion to all the variants you propose: all the files, for pull requests, pushes, etc.

Comment thread .github/workflows/clippy.yaml Outdated
Comment on lines +9 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment thread .github/workflows/qemu.yaml Outdated
Comment on lines +4 to +19
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
push:
branches:
- master
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment thread .github/workflows/riscv-peripheral.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment thread .github/workflows/riscv-rt.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment thread .github/workflows/riscv.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This is pending

Comment thread .github/workflows/rustfmt.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment thread .github/workflows/tests.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

Comment thread .github/workflows/typos.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should also be updated.

@KushalMeghani1644
Copy link
Copy Markdown
Contributor Author

Hey @romancardenas I have updated everything as requested :D

Comment thread .github/workflows/typos.yaml Outdated
Comment thread .github/workflows/typos.yaml Outdated
Comment thread .github/workflows/typos.yaml Outdated
Comment thread .github/workflows/riscv.yaml Outdated
Comment on lines +4 to +17
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
pull_request:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
merge_group:
paths-ignore:
- "**/*.md"
- "README*"
- "LICENSE*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This is pending

KushalMeghani1644 and others added 4 commits April 15, 2026 08:20
Co-authored-by: Román Cárdenas Rodríguez <rcardenas.rod@gmail.com>
Co-authored-by: Román Cárdenas Rodríguez <rcardenas.rod@gmail.com>
Co-authored-by: Román Cárdenas Rodríguez <rcardenas.rod@gmail.com>
Copy link
Copy Markdown
Contributor

@romancardenas romancardenas left a comment

Choose a reason for hiding this comment

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

LGTM

@romancardenas romancardenas added this pull request to the merge queue Apr 15, 2026
Merged via the queue into rust-embedded:master with commit 88bda98 Apr 15, 2026
165 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants