mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-24 10:56:53 +00:00
* ci(gh-workflows): 👷 bump up versions and minor updates * ci(gh-workflows): 👷 bump up versions of verify-linked-issue-action to v0.71 * ci(e2e-k3s): 👷 use ipconfig instead * ci(remove-label): 👷 create separate step for remove label --------- Signed-off-by: Prashant Shahi <prashant@signoz.io>
23 lines
547 B
YAML
23 lines
547 B
YAML
name: remove-label
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [synchronize]
|
|
|
|
jobs:
|
|
remove:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Remove label ok-to-test from PR
|
|
uses: buildsville/add-remove-label@v2.0.0
|
|
with:
|
|
label: ok-to-test
|
|
type: remove
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Remove label testing-deploy from PR
|
|
uses: buildsville/add-remove-label@v2.0.0
|
|
with:
|
|
label: testing-deploy
|
|
type: remove
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|