Feature Toggle Cleanup #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}) |