-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 1.2 KB
/
digger_workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Digger Workflow
on:
workflow_dispatch:
inputs:
id:
description: 'run identifier'
required: false
job:
required: true
comment_id:
required: true
job_type:
description: 'the type of the job (plan, apply, unlock)'
required: false
actor:
description: 'the actor username'
required: false
run-name: ${{inputs.id}} ${{inputs.jobType}} by ${{inputs.actor}}
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 }}