[6eb01427] digger plan home By: b- PR: 5 #47
This file contains hidden or 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
name: Digger Workflow | |
on: | |
workflow_dispatch: | |
inputs: | |
spec: | |
description: Digger spec input | |
required: true | |
run_name: | |
description: Digger 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 | |
issues: read # required to check if PR number is an issue or not | |
statuses: write # required to validate combined PR status | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: ./.github/workflows/infra_connect.yml | |
- 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 | |
setup-terraform: true | |
terraform-version: 1.5.5 | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |