forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
name: Close milestone
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
description: Needs to match, exactly, the name of a milestone
|
|
workflow_call:
|
|
inputs:
|
|
version_call:
|
|
description: Needs to match, exactly, the name of a milestone
|
|
required: true
|
|
type: string
|
|
secrets:
|
|
token:
|
|
required: true
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Close milestone (manually invoked)
|
|
if: ${{ github.event.inputs.version != '' }}
|
|
uses: ./actions/close-milestone
|
|
with:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
- name: Close milestone (workflow invoked)
|
|
if: ${{ inputs.version_call != '' }}
|
|
uses: ./actions/close-milestone
|
|
with:
|
|
version_call: ${{ inputs.version_call }}
|
|
token: ${{ secrets.token }}
|
|
|