2021-12-14 06:54:19 -06:00
|
|
|
name: Remove milestone
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
required: true
|
|
|
|
description: Needs to match, exactly, the name of a milestone
|
2021-12-20 07:16:22 -06:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
version_call:
|
|
|
|
description: Needs to match, exactly, the name of a milestone
|
|
|
|
required: true
|
|
|
|
type: string
|
2023-06-22 04:39:51 -05:00
|
|
|
|
2021-12-14 06:54:19 -06:00
|
|
|
jobs:
|
2023-08-02 06:25:23 -05:00
|
|
|
config:
|
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
outputs:
|
|
|
|
has-secrets: ${{ steps.check.outputs.has-secrets }}
|
|
|
|
steps:
|
|
|
|
- name: "Check for secrets"
|
|
|
|
id: check
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [ -n "${{ (secrets.GRAFANA_DELIVERY_BOT_APP_ID != '' && secrets.GRAFANA_DELIVERY_BOT_APP_PEM != '') || '' }}" ]; then
|
|
|
|
echo "has-secrets=1" >> "$GITHUB_OUTPUT"
|
|
|
|
fi
|
|
|
|
|
2021-12-14 06:54:19 -06:00
|
|
|
main:
|
2023-08-02 06:25:23 -05:00
|
|
|
needs: config
|
|
|
|
if: needs.config.outputs.has-secrets
|
|
|
|
permissions:
|
|
|
|
issues: write
|
2021-12-14 06:54:19 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Actions
|
2023-09-05 03:10:10 -05:00
|
|
|
uses: actions/checkout@v4
|
2021-12-14 06:54:19 -06:00
|
|
|
with:
|
|
|
|
repository: "grafana/grafana-github-actions"
|
|
|
|
path: ./actions
|
|
|
|
ref: main
|
|
|
|
- name: Install Actions
|
|
|
|
run: npm install --production --prefix ./actions
|
2023-06-21 04:06:56 -05:00
|
|
|
- name: "Generate token"
|
2023-06-21 05:28:10 -05:00
|
|
|
id: generate_token
|
|
|
|
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
|
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_ID }}
|
|
|
|
private_key: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_PEM }}
|
2021-12-20 07:16:22 -06:00
|
|
|
- name: Remove milestone from open issues (manually invoked)
|
|
|
|
if: ${{ github.event.inputs.version != '' }}
|
|
|
|
uses: ./actions/remove-milestone
|
|
|
|
with:
|
2023-06-21 04:06:56 -05:00
|
|
|
token: ${{ steps.generate_token.outputs.token }}
|
2021-12-20 07:16:22 -06:00
|
|
|
- name: Remove milestone from open issues (workflow invoked)
|
|
|
|
if: ${{ inputs.version_call != '' }}
|
2021-12-14 06:54:19 -06:00
|
|
|
uses: ./actions/remove-milestone
|
|
|
|
with:
|
2021-12-21 07:34:05 -06:00
|
|
|
version_call: ${{ inputs.version_call }}
|
2023-06-22 04:39:51 -05:00
|
|
|
token: ${{ steps.generate_token.outputs.token }}
|