fix cicd#2
Merged
Merged
Conversation
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
b580912 to
8d66ed7
Compare
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.

TL;DR
Removes all upstream Unstructured-IO GitHub Actions workflows from this fork and streamlines the SchoolAI build workflow to trigger directly on pushes to
main.What changed?
The following upstream workflows have been removed entirely from this fork:
ci.yml(lint, test, changelog, Dockerfile tests)docker-publish.yml(multi-arch build and publish to Quay.io)bump_libraries.yaml(Dependabot-triggered library bumps and releases)version-bump.yml(Renovate bot version bumping)claude.yml(Claude Code AI assistant integration)dependabot.yml(Dependabot configuration)The
schoolai-build-publish.ymlworkflow has been updated to:pushtomain(replacingworkflow_callandworkflow_dispatchonly)push_cache: truefor Docker layer cachingSLACK_WEBHOOKsecret for deployment notificationspermissions: contents: readHow to test?
Merge to
mainand confirm theunstructured-api-staging-buildworkflow triggers automatically, builds theamd64image, and pushes it tous-central1-docker.pkg.dev/schoolai-global/docker/unstructured-api:latest-amd64. Verify no other workflows run.Why make this change?
This is a SchoolAI fork of the upstream
unstructured-apirepository. The upstream CI/CD workflows (Quay.io publishing, Dependabot, Renovate, Claude integration) are not relevant to SchoolAI's infrastructure and add noise. Removing them ensures only SchoolAI-specific CI runs, and the build workflow now follows the same push-to-main pattern used by other SchoolAI services.