You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Ideal Use of Reusable Workflows](#ideal-use-of-reusable-workflows)
@@ -24,7 +25,7 @@ Shared reusable workflows for GitHub Actions.
24
25
25
26
# Reusable Workflows
26
27
27
-
We currently have 4 reusable workflows (i.e. [run-terraform](#run-terraform)) available for use.
28
+
We currently have 6 reusable workflows (i.e. [run-terraform](#run-terraform)) available for use.
28
29
29
30
See [Ideal Use of Workflows](#ideal-use-of-reusable-workflows) for an example of how to optimally use all 3 workflows together.
30
31
@@ -257,6 +258,62 @@ The configfile is currently the only input. The configfile at `.github/auto-merg
257
258
| `[].match.update_type` | string | true | Which changes should be merged. Currently supports `semver:patch`, `semver:minor` and `semver:major`. The type includes all lower tiers, for example `semver:minor` includes patch changes |
258
259
| `[].match.package_ecosystem` | string | true | The name of the package ecosystem which the update belongs to, examples; terraform, golang |
259
260
261
+
## update-skip-docs
262
+
263
+
Automatically creates a pull request for updating documentation on skip.kartverket.no when documentation changes are pushed.
264
+
265
+
### Features
266
+
267
+
- Syncs changes to documentation files in the source repository to target in skip.kartverket.no
268
+
- Automatically creates or updates documentation in the target repository
269
+
- Creates a branch with the changes in the target repository
270
+
- Requires manual merge of the created branch/PR to allow for review
271
+
272
+
### Requirements
273
+
274
+
- The workflow needs write permissions for both `contents` and `id-token`
275
+
- An STS trust file needs to be configured for the target repository
276
+
- The specified identity must have access to the target repository
277
+
278
+
### Example
279
+
280
+
Example usage in `.github/workflows/update-docs.yml`:
0 commit comments