[Docs][8.17.0] Reverting back to ILM as default #121
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
name: Add new issues to the team project board | |
on: | |
issues: | |
types: | |
- opened | |
- transferred | |
permissions: | |
contents: read | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get token | |
id: get_token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
with: | |
app_id: ${{ secrets.OBS_AUTOMATION_APP_ID }} | |
private_key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} | |
permissions: >- | |
{ | |
"organization_projects": "write", | |
"issues": "read" | |
} | |
- uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/elastic/projects/1286 | |
github-token: ${{ steps.get_token.outputs.token }} |