We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description:
Adjusting CI configuration to trigger builds only on code-level changes.
Currently CI is running on every PR we are making. This is because CI is configured to be triggered on every pull requests.
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] ...
We can adjust this configuration to trigger CI only on code level changes. We do not have to run CI on other PR like documentation.
This optimization should also be applied to other repositories as well.
Why:
Improving CI efficiency by avoiding unnecessary build runs on PRs without code changes.
The text was updated successfully, but these errors were encountered:
Hello, Could I work on this issue?
Sorry, something went wrong.
@kokodak Of course you can :)
kokodak
Successfully merging a pull request may close this issue.
Description:
Adjusting CI configuration to trigger builds only on code-level changes.
Currently CI is running on every PR we are making.
This is because CI is configured to be triggered on every pull requests.
We can adjust this configuration to trigger CI only on code level changes.
We do not have to run CI on other PR like documentation.
This optimization should also be applied to other repositories as well.
Why:
Improving CI efficiency by avoiding unnecessary build runs on PRs without code changes.
The text was updated successfully, but these errors were encountered: