Revision 7d18460d8fe2c5294df9e416fa4f60de1fc3e3fe authored by Ashley Harrison on 12 October 2022, 15:33:12 UTC, committed by GitHub on 12 October 2022, 15:33:12 UTC
* convert MetricSelect test to RTL

* remove type param
1 parent 26e7228
Raw File
trigger_grafana_packer.sh
#!/bin/bash

_circle_token=$1

trigger_build_url="https://circleci.com/api/v1/project/grafana/grafana-packer/tree/master?circle-token=${_circle_token}"

curl \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--request POST "${trigger_build_url}"
back to top