chore: clarify the latest major version of the instrumentation module for some instrumentations #2948
Workflow file for this run
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: "Issue Labeler" | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| # '*: write' permissions for https://docs.github.com/en/rest/issues/labels?apiVersion=2022-11-28#add-labels-to-an-issue | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| triage: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Get token | |
| id: get_token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }} | |
| private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} | |
| permission-members: read | |
| - id: is_elastic_member | |
| uses: elastic/oblt-actions/github/is-member-of@v1 | |
| with: | |
| github-org: "elastic" | |
| github-user: ${{ github.actor }} | |
| github-token: ${{ steps.get_token.outputs.token }} | |
| - name: Add community and triage labels | |
| if: contains(steps.is_elastic_member.outputs.result, 'false') && | |
| github.actor != 'dependabot[bot]' && | |
| github.actor != 'elastic-renovate-prod[bot]' && | |
| github.actor != 'elastic-observability-automation[bot]' | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| github.rest.issues.addLabels({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| labels: ["community", "triage"] | |
| }) |