From f3416edd22254918feb7ba583b88c94a5fc8e36d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Jun 2026 20:37:39 +0000 Subject: [PATCH 1/2] Initial plan From d5c991addf964ff643d2c29e03b4c57c70767e04 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Jun 2026 20:40:11 +0000 Subject: [PATCH 2/2] Migrate CI from Travis to GitHub Actions (6.x branch) --- .github/workflows/integration-tests.yml | 17 +++++++++++++++++ .github/workflows/unit-tests.yml | 17 +++++++++++++++++ .travis.yml | 2 -- README.md | 3 ++- 4 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/integration-tests.yml create mode 100644 .github/workflows/unit-tests.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 00000000..b815eb7b --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,17 @@ +name: Integration Tests + +on: + push: + pull_request: + branches: + - 6.x + workflow_dispatch: + +jobs: + tests: + uses: logstash-plugins/.ci/.github/workflows/integration-tests.yml@1.x + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/6.x' }} + with: + timeout-minutes: 60 diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml new file mode 100644 index 00000000..6a7fc7ea --- /dev/null +++ b/.github/workflows/unit-tests.yml @@ -0,0 +1,17 @@ +name: Unit Tests + +on: + push: + pull_request: + branches: + - 6.x + workflow_dispatch: + +jobs: + tests: + uses: logstash-plugins/.ci/.github/workflows/unit-tests.yml@1.x + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/6.x' }} + with: + timeout-minutes: 60 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a50fc739..00000000 --- a/.travis.yml +++ /dev/null @@ -1,2 +0,0 @@ -import: -- logstash-plugins/.ci:travis/travis.yml@1.x \ No newline at end of file diff --git a/README.md b/README.md index 6c74816b..939a7834 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Logstash Plugin -[![Travis Build Status](https://travis-ci.com/logstash-plugins/logstash-input-beats.svg)](https://travis-ci.com/logstash-plugins/logstash-input-beats) +[![Unit Tests](https://github.com/logstash-plugins/logstash-input-beats/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/logstash-plugins/logstash-input-beats/actions/workflows/unit-tests.yml) +[![Integration Tests](https://github.com/logstash-plugins/logstash-input-beats/actions/workflows/integration-tests.yml/badge.svg)](https://github.com/logstash-plugins/logstash-input-beats/actions/workflows/integration-tests.yml) This is a plugin for [Logstash](https://github.com/elastic/logstash).