-
Notifications
You must be signed in to change notification settings - Fork 27
ci: add CI validation, release automation, and Dependabot #144
New issue
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
Merged
Aaron ("AJ") Steers (aaronsteers)
merged 6 commits into
main
from
devin/1782163384-ci-release-automation
Jun 22, 2026
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ff10e17
ci: add CI validation, release automation, and Dependabot
devin-ai-integration[bot] 5f6a95e
ci: remove setup-python from workflows — uv bootstraps its own
devin-ai-integration[bot] 710155b
ci: remove setup-python from generate-command.yml
devin-ai-integration[bot] a36e26f
ci: use Octavia Bot app token exclusively, remove GITHUB_TOKEN fallbacks
devin-ai-integration[bot] f519468
ci: add missing step name to semantic PR title workflow
devin-ai-integration[bot] 3e80dbe
ci: fix version drift, clean up zero-diff comment, remove .post from …
devin-ai-integration[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| # Dependabot configuration for airbyte-api-python-sdk. | ||
| # | ||
| # `.speakeasy/workflow.yaml` uses `speakeasyVersion: pinned`, so the actual CLI | ||
| # version is pinned in `.github/speakeasy/dummy-compose.yml` and bumped by the | ||
| # docker-compose ecosystem entry below. | ||
|
|
||
| version: 2 | ||
| updates: | ||
| # Speakeasy CLI version pin (image: tag in .github/speakeasy/dummy-compose.yml). | ||
| # See that file for the full explanation. | ||
| - package-ecosystem: docker-compose | ||
| directory: /.github/speakeasy | ||
| schedule: | ||
| interval: weekly | ||
| day: monday | ||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: ci(speakeasy) | ||
| labels: | ||
| - dependencies | ||
| - speakeasy | ||
|
|
||
| # GitHub Actions used in .github/workflows/*.yml | ||
| - package-ecosystem: github-actions | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| day: monday | ||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: ci | ||
| labels: | ||
| - dependencies | ||
| - github-actions | ||
|
|
||
| # Python dependencies (uv / pyproject.toml) | ||
| - package-ecosystem: pip | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| day: monday | ||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: chore | ||
| labels: | ||
| - dependencies | ||
| - python |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,45 @@ | ||
| # Stub: Publish to PyPI Workflow | ||
| # PyPI Publish Workflow | ||
| # | ||
| # Minimal placeholder to register the release trigger on main. | ||
| # Full implementation arrives in a follow-up PR. | ||
| # Triggered when a GitHub Release is published (draft → published). | ||
| # Builds the Python package and uploads it to PyPI using OIDC trusted publishing. | ||
| # | ||
| # Prerequisites: | ||
| # - PyPI trusted publisher configured for this repository: | ||
| # https://docs.pypi.org/trusted-publishers/creating-a-project-through-oidc/ | ||
| # Owner: airbytehq | ||
| # Repository: airbyte-api-python-sdk | ||
| # Workflow: publish.yml | ||
| # Environment: pypi | ||
|
|
||
| name: Publish to PyPI | ||
|
|
||
| on: | ||
| release: | ||
| types: [published] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| stub: | ||
| name: Stub (placeholder) | ||
| if: false | ||
| publish: | ||
| name: Build & Publish to PyPI | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: pypi | ||
| url: https://pypi.org/project/airbyte-api/ | ||
| permissions: | ||
| id-token: write | ||
| steps: | ||
| - run: echo "stub" | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.event.release.tag_name }} | ||
|
|
||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v5 | ||
|
|
||
| - name: Build package | ||
| run: uv build | ||
|
|
||
| - name: Publish to PyPI | ||
| uses: pypa/gh-action-pypi-publish@release/v1 |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.