documentation: clarify usage of ELASTIC_APM_LAMBDA_APM_SERVER and ELASTIC_APM_LAMBDA_APM_SERVER #380
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: "Issue Labeler" | |
on: | |
issues: | |
types: [opened] | |
pull_request_target: | |
types: [opened] | |
env: | |
MY_GITHUB_TOKEN: ${{ secrets.APM_TECH_USER_TOKEN }} | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add aws-λ-extension label | |
uses: AlexanderWert/issue-labeler@v2.3 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/labeler-config.yml | |
enable-versioned-regex: 0 | |
- name: Check team membership for user | |
uses: elastic/get-user-teams-membership@1.1.0 | |
id: checkUserMember | |
with: | |
username: ${{ github.actor }} | |
team: 'apm' | |
usernamesToExclude: | | |
apmmachine | |
dependabot | |
GITHUB_TOKEN: ${{ secrets.APM_TECH_USER_TOKEN }} | |
- name: Show team membership | |
run: | | |
echo "::debug::isTeamMember: ${{ steps.checkUserMember.outputs.isTeamMember }}" | |
echo "::debug::isExcluded: ${{ steps.checkUserMember.outputs.isExcluded }}" | |
- name: Add community and triage labels | |
if: steps.checkUserMember.outputs.isTeamMember != 'true' && steps.checkUserMember.outputs.isExcluded != 'true' | |
uses: AlexanderWert/issue-labeler@v2.3 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/community-label.yml | |
enable-versioned-regex: 0 | |
- name: Assign new internal pull requests to project | |
uses: elastic/assign-one-project-github-action@1.2.2 | |
if: (steps.checkUserMember.outputs.isTeamMember == 'true' || steps.checkUserMember.outputs.isExcluded == 'true') && github.event.pull_request | |
with: | |
project: 'https://github.com/orgs/elastic/projects/454' | |
project_id: '5882982' | |
column_name: 'In Progress' |