Error on submission due to Reachability privacy manifest #158
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] | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
triage: | |
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: >- | |
{ | |
"members": "read", | |
"organization_projects": "write", | |
"issues": "read" | |
} | |
- name: Add agent-ios and agent-mobile labels | |
uses: AlexanderWert/[email protected] | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/labeler-config.yml | |
enable-versioned-regex: 0 | |
- name: Check team membership for user | |
uses: elastic/[email protected] | |
id: checkUserMember | |
with: | |
username: ${{ github.actor }} | |
team: 'apm' | |
usernamesToExclude: | | |
dependabot | |
dependabot[bot] | |
elastic-observability-automation | |
elastic-observability-automation[bot] | |
GITHUB_TOKEN: ${{ steps.get_token.outputs.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 lables | |
if: steps.checkUserMember.outputs.isTeamMember != 'true' && steps.checkUserMember.outputs.isExcluded != 'true' | |
uses: AlexanderWert/[email protected] | |
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/[email protected] | |
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' | |
env: | |
MY_GITHUB_TOKEN: ${{ steps.get_token.outputs.token }} |