feat(kubernetes_events source): add k8s events src #21013
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: Remove Awaiting Author Label | |
| permissions: | |
| pull-requests: write | |
| on: | |
| pull_request_target: | |
| types: [synchronize, review_requested] | |
| pull_request: | |
| types: [synchronize, review_requested] | |
| jobs: | |
| remove_label: | |
| if: "contains(github.event.pull_request.labels.*.name, 'meta: awaiting author')" | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 | |
| with: | |
| labels: "meta: awaiting author" | |
| fail_on_error: true |