[datadog_software_catalog] v3 terraform needs to hydrate the current state from raw content #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SDKv2 Deprecation Check | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-sdkv2: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Get changed files | |
id: new-resources | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: "datadog/*.go" | |
- uses: exercism/[email protected] | |
if: steps.new-resources.outputs.added_files_count != '0' | |
with: | |
github-token: "${{ github.token }}" | |
config-file: ".github/sdkv2-warning.yml" | |
- run: exit 1 | |
if: steps.new-resources.outputs.added_files_count != '0' |