mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 11:30:08 +00:00
* chore(Makefile): ⚡️ remove no-cache from all docker build commands * chore(Makefile): 🔧 update target name * feat(docker-standalone): ✨ introduce tag environment variables for easy custom deployments * ci(deployments): 👷 workflows for staging and testing deployments * ci(deployments): 👷 pass DEV_BUILD env to remote host
17 lines
325 B
YAML
17 lines
325 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,testing-deploy
|
|
type: remove
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|