mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
28 lines
1.2 KiB
YAML
28 lines
1.2 KiB
YAML
|
name: Feature Toggle Cleanup
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
# * is a special character in YAML so you have to quote this string
|
||
|
- cron: '30 10 * * *'
|
||
|
jobs:
|
||
|
feature-toggle-cleanup:
|
||
|
runs-on: ubuntu-latest
|
||
|
# This check is here to prevent this workflow from running on forks.
|
||
|
if: github.repository == 'grafana/grafana'
|
||
|
steps:
|
||
|
- name: Check out the code
|
||
|
uses: actions/checkout@v3
|
||
|
- uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: "20.x"
|
||
|
- run: npm install csv-parse
|
||
|
- name: Parse CVS file to see which Feature Toggles should be notified about
|
||
|
id: parse-csv-file
|
||
|
uses: actions/github-script@v7
|
||
|
env:
|
||
|
FEATURE_TOGGLES_CSV_FILE_PATH: "pkg/services/featuremgmt/toggles_gen.csv"
|
||
|
with:
|
||
|
script: |
|
||
|
const { default: cleanupFeatureFlags } = await import('${{ github.workspace }}/.github/workflows/scripts/feature-toggle-cleanup/feature-toggle-cleanup.mjs')
|
||
|
await cleanupFeatureFlags({github, context, core})
|