Skip to content

Commit

Permalink
merge develop into feat/lowlevel-run (#1097)
Browse files Browse the repository at this point in the history
* Docs - Update feedback.mdx

* Docs - Update feedback.mdx

* Documentation edits made through Mintlify web editor

* Documentation edits made through Mintlify web editor

* Documentation edits made through Mintlify web editor

* Add actions:write permission to AWS quickstart

* Add action permissions to GCP quickstart

* Docs: add permissions to plan-persistence page

* Docs: add comment-id to workflow file in quickstarts

* Update github-actions-and-gcp.mdx

---------

Co-authored-by: Utpal Nadiger <nadiger.utpal@gmail.com>
Co-authored-by: Igor Zalutski <izalutski@gmail.com>
  • Loading branch information
3 people committed Jan 31, 2024
1 parent 72c3f7d commit 0e49f41
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
3 changes: 3 additions & 0 deletions docs/features/plan-persistence.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Or to use a GCP bucket:
upload-plan-destination: gcp
```

## Permissions
Make sure to set `actions:write` permission in your workflow; otherwise plan storage might fail

## Plan json file naming convention

The location of plan json output file is:
Expand Down
3 changes: 3 additions & 0 deletions docs/getting-started/github-actions-+-aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,14 @@ on:
required: false
job:
required: true
comment_id:
required: true
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
Expand Down
8 changes: 8 additions & 0 deletions docs/getting-started/github-actions-and-gcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,18 @@ on:
required: false
job:
required: true
comment_id:
required: true
jobs:
digger-job:
name: Digger
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
- id: 'auth'
Expand Down
11 changes: 7 additions & 4 deletions docs/readme/feedback.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
---
title: "Feedback - tell us what is lacking"
title: "Feedback"
---

We are always looking at feedback and suggestions from the community. If something is missing, if you have a feature request, or if something isn't working as it is supposed to,
please tell us. We are always keen on thoughts/feedback.

Please head over to this page on [github](https:github.com/diggerhq/digger/docs/readme/feedback) and raise a PR to add your feedback with the following syntax

{Sl no}.{Name} - [Feedback point](Optionally link corresponding GitHub Issue if it exists}
Head over to [Github](https://github.com/diggerhq/digger/blob/develop/docs/readme/feedback.mdx) and raise a PR to add your feedback below (Optionally link to a github issue if you find it is relevant to your feedback)

1. Utpal Nadiger - [terraform file for the initial configuration to setup S3 & Dynamo DB for state management](https://github.com/diggerhq/digger/issues/206)
## To-do list (Issues, feedback and feature requests)

1. Terraform file for the initial condiguration to setup S3 bucket and dynamo DB for [state management](https://github.com/diggerhq/digger/issues/206).

2. Decouple auth from [frontegg](https://github.com/diggerhq/digger/issues/1074).

0 comments on commit 0e49f41

Please sign in to comment.