mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 00:47:38 -06:00
dc486e0ca4
Revert "Only run workflows if they might be able to work (#63164)"
This reverts commit 234b5c8c21
.
20 lines
718 B
YAML
20 lines
718 B
YAML
name: Close Milestone
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version_input:
|
|
description: 'The version to be released please respect: major.minor.patch, major.minor.patch-preview or major.minor.patch-preview<number> format. example: 7.4.3, 7.4.3-preview or 7.4.3-preview1'
|
|
required: true
|
|
jobs:
|
|
call-remove-milestone:
|
|
uses: grafana/grafana/.github/workflows/remove-milestone.yml@main
|
|
with:
|
|
version_call: ${{ github.event.inputs.version_input }}
|
|
secrets: inherit
|
|
call-close-milestone:
|
|
uses: grafana/grafana/.github/workflows/close-milestone.yml@main
|
|
with:
|
|
version_call: ${{ github.event.inputs.version_input }}
|
|
secrets: inherit
|
|
needs: call-remove-milestone
|