Revert "[internal/otelarrow] Remove manual time.Sleep call" #1001
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: 'First time contributor' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- labeled | |
permissions: read-all | |
jobs: | |
welcome_first_contributor: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'open-telemetry' && (github.event.pull_request.author_association == 'NONE' || github.event.label.name == 'first-contrib-test') | |
steps: | |
- run: gh pr edit "$NUMBER" --add-label "$LABELS" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.pull_request.number }} | |
LABELS: 'first-time contributor' | |
- name: Comment on PR | |
uses: actions-ecosystem/action-create-comment@e23bc59fbff7aac7f9044bd66c2dc0fe1286f80b # v1.0.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
Welcome, contributor! Thank you for your contribution to opentelemetry-collector-contrib. | |
**Important reminders:** | |
- Please review our [Contributing Guidelines](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CONTRIBUTING.md). | |
- Don't forget to sign the [Contributor License Agreement (CLA)](https://identity.linuxfoundation.org/projects/cncf) if you haven't already. | |
A maintainer will review your pull request soon. Thank you for helping make OpenTelemetry better! |