Skip to content

refactor: remove broad ignore_changes on disks #13

refactor: remove broad ignore_changes on disks

refactor: remove broad ignore_changes on disks #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
permissions:
contents: write
jobs:
test:
name: Pre-commit Tests
runs-on: arc-dind
container:
image: ghcr.io/makeitworkcloud/runner:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Initialize OpenTofu
run: tofu init -backend=false
- name: Run tests
run: make test
release:
name: Create Release
runs-on: ubuntu-latest
needs: [test]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true