mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 19:40:24 +00:00
17 lines
310 B
YAML
17 lines
310 B
YAML
name: remove-label
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [synchronize]
|
|
|
|
jobs:
|
|
remove:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Remove label
|
|
uses: buildsville/add-remove-label@v1
|
|
with:
|
|
label: ok-to-test
|
|
type: remove
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|