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.
1 parent 8f02eec commit e4e63c9Copy full SHA for e4e63c9
.github/workflows/main.yml
@@ -21,10 +21,14 @@ jobs:
21
pull-requests: write # Required to add comment and label.
22
23
steps:
24
- - uses: actions/checkout@v4
25
- - uses: hashicorp/setup-terraform@v3
26
- - uses: devsectop/tf-via-pr@v12
27
- with:
+ - name: Install Github CLI
+ run: sudo apt-get install gh -y
+
+ - name: Checkout code
28
+ uses: actions/checkout@v4
29
+ - uses: hashicorp/setup-terraform@v3
30
+ - uses: devsectop/tf-via-pr@v12
31
+ with:
32
# Only plan by default, or apply with lock on merge.
33
command: ${{ github.event_name == 'push' && 'apply' || 'plan' }}
34
arg-lock: ${{ github.event_name == 'push' }}
0 commit comments