🏷️✨ Label Beautifier #1
This file contains hidden or 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: 🏷️✨ Label Beautifier | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| dry_run: | |
| description: 'Dry run mode (only show changes, do not apply them)' | |
| required: true | |
| default: 'false' | |
| type: choice | |
| options: | |
| - 'false' | |
| - 'true' | |
| jobs: | |
| beautify: | |
| uses: 0GiS0/agentic-repo/.github/workflows/label-beautifier.yml@main | |
| with: | |
| dry_run: ${{ inputs.dry_run }} | |
| secrets: inherit |