-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
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 | ||
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@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: true | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
env: | ||
GITHUB_CONTEXT: ${{ toJson(github) }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |