Skip to content

Commit

Permalink
Merge branch 'main' into issue-3980
Browse files Browse the repository at this point in the history
  • Loading branch information
colleenmcginnis committed Oct 7, 2024
2 parents d3f19ba + 265db9a commit 440d2ce
Show file tree
Hide file tree
Showing 288 changed files with 3,691 additions and 3,045 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/elastic-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ body:
description: Some requests may be tied to the Elastic Stack release schedule. Some, like Serverless requests, may not. Please select an option.
options:
- 'N/A'
- '8.11'
- '8.12'
- '8.13'
- '8.14'
- '8.15'
- '8.16'
- '8.17'
- '9.0'
- '9.1'
- '9.2'
default: 0
validations:
required: true
Expand Down
45 changes: 45 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
## Description
<!-- Add a description here -->

### Documentation sets edited in this PR

_Check all that apply._

- [ ] Stateful (`docs/en/observability/*`)
- [ ] Serverless (`docs/en/serverless/*`)
- [ ] Integrations Developer Guide (`docs/en/integrations/*`)
- [ ] None of the above

### Related issue
Closes # <!-- Add the issue this PR closes here -->

## Checklist

<!--
Add labels to:
1. Backport to other versions (`backport-*`):
- `backport-8.x` to backport to the latest minor
- `backport-skip` to not backport (for example, for serverless docs)
- `backport-main` to "backport" to `main` if the target branch is _not_ `main`
- Individual `backport-*` labels to target specific minor versions
2. Surface blocking reviews (`needs-*-review`):
- `needs-writer-review` for codeowners
- `needs-dev-review` for dev team
- `needs-product-review` for PM review
3. Build serverless preview docs: `ci:doc-build`
-->

- [ ] Product/Engineering Review
- [ ] Writer Review

### Follow-up tasks
<!-- If you are updating the Integrations Developer Guide, you can delete this section -->

_Select one._

* This PR does _not_ need to be ported to another doc set because:
- [ ] The concepts in this PR only apply to one doc set (serverless _or_ stateful)
- [ ] The PR contains edits to both doc sets (serverless _and_ stateful)
* This PR needs to be ported to another doc set:
- [ ] Port to stateful docs: \<link to PR or tracking issue>
- [ ] Port to serverless docs: \<link to PR or tracking issue>
16 changes: 14 additions & 2 deletions .github/workflows/add-pr-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,20 @@ jobs:
item: ${{ fromJSON(steps.add_pr_to_board.outputs.data).addProjectV2ItemById.item.id }}
# This is the ID for the project "status" attribute
field: "PVTSSF_lADOAGc3Zs0iZ84AAQIU"
# This is the ID for the status sub-attribute "In Review"
value: "2d732740"
# This is the ID for the status sub-attribute "In Progress"
value: "47fc9ee4"
env:
PROJECT_ID: "PVT_kwDOAGc3Zs0iZw"
GITHUB_TOKEN: ${{ steps.get_token.outputs.app_token }}
- name: Add label
uses: actions/github-script@v7
id: add_label
with:
github-token: ${{ steps.get_token.outputs.app_token }}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['needs-writer-review']
})
Loading

0 comments on commit 440d2ce

Please sign in to comment.