Draft
Migrate CI from Travis to GitHub Actions (5.x branch)#156
Conversation
Copilot
AI
changed the title
[WIP] Migrate CI from Travis to GitHub Actions for 5.x branch
Migrate CI from Travis to GitHub Actions (5.x branch)
Jul 1, 2026
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 migrates CI for the
5.xbranch from Travis to GitHub Actions using the shared reusable workflows inlogstash-plugins/.ci@1.x, and removes Travis configuration from this branch. It keeps branch coverage semantics for5.x+mainand updates repository status badges accordingly.Scope / branch targeting
5.xonly (non-default branch), aligned with the migration issue scope: Migrate CI from Travis to GitHub Actions (5.x branch) #154Workflow migration (Travis → GHA)
.github/workflows/unit-tests.ymllogstash-plugins/.ci/.github/workflows/unit-tests.yml@1.x['5.x', main]schedulefanout matrix over['5.x', main]withref: ${{ matrix.branch }}workflow_dispatchsecrets: inheriton both caller jobspermissions: contents: readTravis parity mapping (resolved config → GHA caller)
Unit Testsworkflow caller.ELASTIC_STACK_VERSION=8.currentunit-tests.yml→testsjob (reusable unit-tests matrix)ELASTIC_STACK_VERSION=9.previousunit-tests.yml→testsjobELASTIC_STACK_VERSION=9.currentunit-tests.yml→testsjobSNAPSHOT=true ELASTIC_STACK_VERSION=8.currentunit-tests.yml→testsjobSNAPSHOT=true ELASTIC_STACK_VERSION=9.previousunit-tests.yml→testsjobSNAPSHOT=true ELASTIC_STACK_VERSION=9.currentunit-tests.yml→testsjobSNAPSHOT=true ELASTIC_STACK_VERSION=mainunit-tests.yml→testsjobunit-tests.yml→scheduledmatrix job (branch: ['5.x', main])README badges
Unit Testsbadge URL now points toactions/workflows/unit-tests.yml/badge.svg?branch=5.xTravis removal
.travis.ymlfrom5.x.Example snippet (new caller pattern)