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 pull request includes several changes to GitHub workflows and configuration files, with the main focus on workflow updates, removal of deprecated workflows, and dependency update schedules. Below are the most important changes:
Workflow Updates:
pr-labeler
job to theRun All Checks
workflow to automatically label pull requests based on their content. This job uses theTimonVS/pr-labeler-action
and has appropriate permissions set. (.github/workflows/checks.yml
)Removal of Deprecated Workflows:
Deploy Networks
workflow, which was responsible for deploying networks on specific branches and tags. (.github/workflows/deploy-net.yml
)PR Labeler
workflow, which was previously used to label pull requests. This functionality has been integrated into theRun All Checks
workflow. (.github/workflows/label-pr.yml
)Publish Versioned Assets
workflow, which was responsible for publishing assets tobuf.build
. This functionality has been integrated into the renamedpublish.yml
workflow. (.github/workflows/publish-assets.yml
)Workflow Renaming and Consolidation:
make-docs
workflow topublish.yml
and consolidated it to handle both publishing versioned assets and documentation. (.github/workflows/publish.yml
)scheduled-release
workflow torelease.yml
and updated it to trigger on pushes to specific branches and tags. (.github/workflows/release.yml
)Dependency Update Schedule:
.github/dependabot.yml
)These changes aim to streamline the workflow processes, remove redundant workflows, and ensure that dependency updates are managed more efficiently.- chore: remove deprecated label-pr workflow
Commits