Skip to content

Migrate CI from Travis to GitHub Actions (main branch)#49

Draft
Copilot wants to merge 2 commits into
mainfrom
copilot/migrate-ci-from-travis-to-github-actions
Draft

Migrate CI from Travis to GitHub Actions (main branch)#49
Copilot wants to merge 2 commits into
mainfrom
copilot/migrate-ci-from-travis-to-github-actions

Conversation

Copilot AI commented Jul 1, 2026

Copy link
Copy Markdown

Replaces Travis CI with GitHub Actions for the main branch, using the shared reusable workflows from logstash-plugins/.ci@1.x.

What changed

  • Added .github/workflows/unit-tests.yml — calls logstash-plugins/.ci/.github/workflows/unit-tests.yml@1.x
  • Added .github/workflows/integration-tests.yml — calls logstash-plugins/.ci/.github/workflows/integration-tests.yml@1.x
  • Updated README.md — replaced Travis badge with GHA badges for both workflows
  • Deleted .travis.yml

Both workflow files use push/PR/workflow_dispatch triggers plus a scheduled matrix cron (0 8 * * *) that fans out over all active branches via a matrix.branch job.

Travis → GHA matrix parity (main)

Travis job GHA equivalent
Base unit tests (inherited matrix: 8.current, 9.previous, 9.current ± snapshot) unit-tests.yml — reusable default matrix
INTEGRATION=true ELASTIC_STACK_VERSION=8.current integration-tests.yml8.current non-snapshot
INTEGRATION=true ELASTIC_STACK_VERSION=9.current integration-tests.yml9.current non-snapshot
INTEGRATION=true SNAPSHOT=true ELASTIC_STACK_VERSION=8.current integration-tests.yml8.current snapshot
INTEGRATION=true SNAPSHOT=true ELASTIC_STACK_VERSION=9.current integration-tests.yml9.current snapshot
INTEGRATION=true SNAPSHOT=true ELASTIC_STACK_VERSION=main integration-tests.ymlmain snapshot (via reusable include:)

No SECURE_INTEGRATION or HAS_PERFORMANCE_TESTS jobs in Travis → no additional workflows added. The reusable default matrix also covers 9.next (snapshot), which is additive for the default branch.

.ci/run.sh required no changes — no docker-compose CLI invocations present (only a stale comment reference).

Copilot AI changed the title [WIP] Migrate CI from Travis to GitHub Actions for main branch Migrate CI from Travis to GitHub Actions (main branch) Jul 1, 2026
Copilot AI requested a review from donoghuc July 1, 2026 22:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Migrate CI from Travis to GitHub Actions (main branch)

2 participants