File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66permissions :
77 contents : write
8+ issues : write
89
910jobs :
1011 backfill-index :
3233 git diff --cached --quiet && echo "No changes needed" && exit 0
3334 git commit -m "fix: regenerate index.yaml with correct chart URLs"
3435 git push origin gh-pages
36+
37+ - name : Open cleanup issue
38+ uses : actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
39+ with :
40+ script : |
41+ await github.rest.issues.create({
42+ owner: context.repo.owner,
43+ repo: context.repo.repo,
44+ title: 'chore: remove one-time backfill-index workflow',
45+ body: [
46+ 'The `backfill-index.yaml` workflow was a one-time cleanup to fix broken `docs/`-prefixed URLs in `index.yaml`.',
47+ 'It has been run successfully. The file `.github/workflows/backfill-index.yaml` should now be deleted.',
48+ ].join('\n\n'),
49+ labels: ['chore'],
50+ });
You can’t perform that action at this time.
0 commit comments