Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes committed Aug 21, 2024
1 parent 941e38f commit f11406d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/digger_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Digger Workflow

on:
workflow_dispatch:
inputs:
spec:
required: true
run_name:
required: false

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

jobs:
digger-job:
runs-on: ubuntu-latest
permissions:
contents: write # required to merge PRs
actions: write # required for plan persistence
id-token: write # required for workload-identity-federation
pull-requests: write # required to post PR comments
statuses: write # required to validate combined PR status

steps:
- uses: actions/checkout@v4
- name: ${{ fromJSON(github.event.inputs.spec).job_id }}
run: echo "job id ${{ fromJSON(github.event.inputs.spec).job_id }}"
- uses: diggerhq/digger@vLatest
with:
digger-spec: ${{ inputs.spec }}
setup-aws: false
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions dev/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resource "null_resource" "test_dev" {}
5 changes: 5 additions & 0 deletions digger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
projects:
- name: dev
dir: dev
- name: prod
dir: prod
1 change: 1 addition & 0 deletions prod/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resource "null_resource" "test_prod" {}

0 comments on commit f11406d

Please sign in to comment.