We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0031319 + 6f54065 commit 7bddef4Copy full SHA for 7bddef4
action.yaml
@@ -28,6 +28,10 @@ inputs:
28
description: CLI flags to use with terraform plan
29
required: false
30
default: ""
31
+ workflow-artifact-name:
32
+ description: Provides a unique name to append to the plan artifact attached to this workflow run. Default: tfplan
33
+ required: false
34
+ default: "tfplan"
35
36
37
outputs:
@@ -114,7 +118,7 @@ runs:
114
118
id: save-artifact
115
119
uses: actions/upload-artifact@v4
116
120
with:
117
- name: pr-${{ github.event.pull_request.number }}-tfplan
121
+ name: pr-${{ github.event.pull_request.number }}-${{ inputs.workflow-artifact-name }}
122
path: ${{ github.workspace }}/${{ inputs.working-directory }}/tfplan
123
env:
124
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
0 commit comments