ci: update pipelines for consistency - #3
Merged
Merged
Conversation
Contributor
Author
|
This PR requires dfinity/ci-tools#43 to be merged first, in order for the pipelines on this PR to pass. |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR standardizes CI pipeline configurations across GitHub workflows by implementing consistent tooling and concurrency controls. The changes enhance pipeline reliability and maintainability while adding necessary configuration files for automated processes.
- Replaces the standard
denoland/setup-denoaction with a customdfinity/ci-tools/actions/setup-denoaction across multiple workflows - Adds concurrency groups to prevent overlapping workflow runs and optimize resource usage
- Introduces the
BOT_APPROVED_FILESconfiguration to define which files can be modified by automated processes
Reviewed Changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/release.yml |
Removes job name and switches to custom Deno setup action |
.github/workflows/generate-changelog.yml |
Adds workflow name and concurrency controls |
.github/workflows/commitizen.yml |
Adds concurrency controls and removes redundant job names |
.github/workflows/check-style.yml |
Switches to custom Deno setup action for both lint and format jobs |
.github/repo_policies/BOT_APPROVED_FILES |
Creates new file defining bot-approved file patterns |
.github/PULL_REQUEST_TEMPLATE.md |
Adds new PR template with sections for context and breaking changes |
.github/CONTRIBUTING.md |
Updates documentation with improved formatting and bot approval process |
.github/CODEOWNERS |
Improves comment formatting for consistency |
nathanosdev
force-pushed
the
nathan/update-pipelines
branch
from
August 6, 2025 17:46
7f4313b to
b6a24f9
Compare
nathanosdev
force-pushed
the
nathan/update-pipelines
branch
from
August 6, 2025 18:17
85fbed3 to
f20b52b
Compare
ilbertt
previously approved these changes
Aug 6, 2025
nathanosdev
force-pushed
the
nathan/update-pipelines
branch
from
August 6, 2025 19:15
4564333 to
18322dd
Compare
ilbertt
previously approved these changes
Aug 6, 2025
ilbertt
approved these changes
Aug 7, 2025
viviveevee
approved these changes
Aug 7, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR starts using the
setup-denoaction, adds the missingBOT_APPROVED_FILESfile, sets up better concurrency settings.