Use non-computed property value comparison for matching detailed diff set inputs to plan #5990
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
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Pull Request | |
on: [pull_request] | |
jobs: | |
build: | |
name: Test and Lint | |
uses: ./.github/workflows/build-and-test.yml | |
secrets: inherit | |
clean-files: | |
name: Ensure test assets build cleanly | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install pulumi | |
uses: pulumi/actions@v5 | |
with: | |
pulumi-version: dev | |
- name: Check out source code | |
uses: actions/checkout@master | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.x | |
cache-dependency-path: | | |
**/go.sum | |
- run: make -C pkg/pf build.testproviders | |
- name: Ensure Clean Repo | |
run: git diff-files --quiet | |
- name: Show Dirty Repo File Changes | |
if: failure() | |
run: git diff-files --patch |