Skip to content

[${{inputs.batch_id}}] ${{inputs.digger_command}} ${{inputs.project_name}} By: ${{inputs.requested_by}} PR: ${{inputs.pr_number}}%!(EXTRA string=29e9084f, string=digger plan, string=staging, string=motatoes, int=3) #42

[${{inputs.batch_id}}] ${{inputs.digger_command}} ${{inputs.project_name}} By: ${{inputs.requested_by}} PR: ${{inputs.pr_number}}%!(EXTRA string=29e9084f, string=digger plan, string=staging, string=motatoes, int=3)

[${{inputs.batch_id}}] ${{inputs.digger_command}} ${{inputs.project_name}} By: ${{inputs.requested_by}} PR: ${{inputs.pr_number}}%!(EXTRA string=29e9084f, string=digger plan, string=staging, string=motatoes, int=3) #42

name: Digger Workflow
on:
workflow_dispatch:
inputs:
id:
description: 'run identifier'
required: false
job:
required: true
comment_id:
required: true
run_name:
description: 'the run name of the action'
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:
- name: digger run ${{github.event.inputs.id}}
run: echo digger run ${{ inputs.id }}
shell: bash
- uses: actions/checkout@v4
- uses: diggerhq/digger@vLatest
with:
setup-aws: false
disable-locking: true
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}