mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-15 16:12:35 +00:00
Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com> Co-authored-by: Austin Valle <austinvalle@gmail.com>
23 lines
528 B
YAML
23 lines
528 B
YAML
# 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
- uses: miniscruff/changie-action@6dcc2533cac0495148ed4046c438487e4dceaa23 # v2.0.0
|
|
with:
|
|
version: latest
|
|
args: batch patch --dry-run
|
|
|