Create a “Get Started with Elastic” tutorial to guide users through their trial experience #1137
This file contains hidden or 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: "Label new issues with needs-team" | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| add-needs-triage-label: | |
| name: Add `needs-team` label | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add the needs-team label | |
| uses: actions-ecosystem/action-add-labels@v1 | |
| with: | |
| labels: | | |
| needs-team | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |