Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/digger_workflow.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Digger Workflow

on:
pull_request:
branches: [ "main" ]
types: [ opened, synchronize ]
issue_comment:
types: [created]
workflow_dispatch:
inputs:
id:
Expand All @@ -14,7 +19,7 @@ on:
required: false
spec:
description: 'spec input for digger'
required: false
required: true

run-name: ${{ inputs.run_name}}

Expand All @@ -32,7 +37,7 @@ jobs:
steps:
- name: digger run ${{github.event.inputs.id}}
run: echo digger run ${{ inputs.id }}
shell: bash
shell: bash
- uses: actions/checkout@v4

- uses: diggerhq/digger@vLatest
Expand Down
3 changes: 0 additions & 3 deletions prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ terraform {
}
backend "s3" {
bucket = "amzn-digger-demo-s3" # Change if a different S3 bucket name was used for the backend
/* Un-comment to use DynamoDB state locking
dynamodb_table = "digger-locktable-quickstart-aws" # Change if a different DynamoDB table name was used for backend
*/
key = "terraform/state"
region = "us-east-1"
}
Expand Down
Loading