[receiver/awscontainerinsight] default host proc (/rootfs/proc) is attempted before checking for HOST_PROC env var #3786
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: 'Ping code owners on a new issue' | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
ping-owners-on-new-issue: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'open-telemetry' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ping-codeowners-on-new-issue.sh | |
run: ./.github/workflows/scripts/ping-codeowners-on-new-issue.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE: ${{ github.event.issue.number }} | |
TITLE: ${{ github.event.issue.title }} | |
BODY: ${{ github.event.issue.body }} | |
OPENER: ${{ github.event.issue.user.login }} |