Execute the build in the cmd/builder directory, but there is an error during the packaging process #428
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: 'Ping code owners on a new issue' | |
| on: | |
| issues: | |
| types: [opened] | |
| permissions: read-all | |
| jobs: | |
| ping-owners-on-new-issue: | |
| permissions: | |
| issues: write | |
| runs-on: ubuntu-24.04 | |
| if: ${{ github.repository_owner == 'open-telemetry' }} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - 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 }} |