Simplify GitHub Actions workflows - #29
Merged
Merged
Conversation
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.
Motivation
Buildworkflow and keep only the essentialReleaseworkflow.Buildworkflow cover changes to documentation and.githubinstead of scattering checks across several small workflows.Description
.github/workflows/build-docs.yml,.github/workflows/publish-docs.yml,.github/workflows/prevent-github-change.yml,.github/workflows/pr-merged.yaml,.github/workflows/publish-backplane-redis.yml,.github/workflows/stale.yml, and.github/actions/check-metas/action.yaml..github/workflows/build.ymlto removepaths-ignore(so docs and.githubchanges are covered) and to use the local composite action./.github/actions/setup-dotnetin place of the external reusable action..github/workflows/release.ymlto use the local./.github/actions/setup-dotnetwhere the job performs a checkout, and removed the now-deletedcheck-metasstep andactions-timelineusage.Simplify GitHub Actions workflowsand prepared the PR metadata (make_pr) summarizing the simplification.Testing
.githubYAML files viaruby -e 'require "yaml"; ...'which succeeded and validated YAML syntax.rgto assert removed workflow names and internal action references are no longer present, which succeeded.git status/git diff --statand created a commit viagit commit -m "Simplify GitHub Actions workflows", which succeeded.make_prto capture the change summary and testing notes, which succeeded.Codex Task