From b42bb1997927677c9ec26ec03658dd6c86fe086f Mon Sep 17 00:00:00 2001 From: abikouo Date: Thu, 20 Apr 2023 12:17:57 +0200 Subject: [PATCH] github actions - linters and changelog workflow --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..bed396c38 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: CI +concurrency: + group: ${{ github.head_ref }} + cancel-in-progress: true + +on: + pull_request: + types: + - opened + - reopened + - labeled + - unlabeled + - synchronize + branches: + - main + - stable-* + tags: + - '*' + +jobs: + changelog: + uses: ansible-network/github_actions/.github/workflows/changelog.yml@main + linters: + uses: abikouo/github_actions/.github/workflows/tox-linters.yml@tox_linters \ No newline at end of file