From 7c5d5c01283d69864ef281126ef25d2b6980182c Mon Sep 17 00:00:00 2001 From: Maria Alexandra <239999+axelavargas@users.noreply.github.com> Date: Fri, 17 Dec 2021 11:14:09 +0100 Subject: [PATCH] Chore: Create close milestone github action (#43269) --- .github/workflows/close-milestone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/close-milestone.yml diff --git a/.github/workflows/close-milestone.yml b/.github/workflows/close-milestone.yml new file mode 100644 index 00000000000..98ce372db3d --- /dev/null +++ b/.github/workflows/close-milestone.yml @@ -0,0 +1,23 @@ +name: Close milestone +on: + workflow_dispatch: + inputs: + version: + required: true + description: Needs to match, exactly, the name of a milestone +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 + uses: ./actions/close-milestone + with: + token: ${{secrets.GH_BOT_ACCESS_TOKEN}}