Skip to content

Update main.tf

Update main.tf #3

name: Digger Workflow

Check failure on line 1 in .github/workflows/digger_workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/digger_workflow.yml

Invalid workflow file

`inputs` is not a valid event name
on:
workflow_dispatch:
inputs:
id:
description: 'run identifier'
required: false
job:
required: true
comment_id:
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: ${{github.event.inputs.id}}
run: echo job id ${{ inputs.id }}
- uses: diggerhq/digger@vLatest
with:
setup-aws: false
disable-locking: true
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}