From 36eaf8ca0444fa0e18b701e6ea9d713257bb6ae4 Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Mon, 27 Nov 2023 18:44:22 +0100 Subject: [PATCH] .github: Add CI for changie (#301) Reference: https://github.com/hashicorp/terraform-providers-devex-internal/issues/171 --- .github/workflows/ci-changie.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci-changie.yml diff --git a/.github/workflows/ci-changie.yml b/.github/workflows/ci-changie.yml new file mode 100644 index 00000000..8ec8b11b --- /dev/null +++ b/.github/workflows/ci-changie.yml @@ -0,0 +1,23 @@ +# Continuous integration handling for changie +name: ci-changie + +on: + pull_request: + paths: + - .changes/unreleased/*.yaml + - .changie.yaml + - .github/workflows/ci-changie.yml + +permissions: + contents: read + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: miniscruff/changie-action@6dcc2533cac0495148ed4046c438487e4dceaa23 # v2.0.0 + with: + version: latest + args: batch patch --dry-run +