[ENH] add unified results for optimization runs in experiment #17
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
| # ============================================================================= | |
| # Auto-Label PRs | |
| # ============================================================================= | |
| # | |
| # TRIGGER: | |
| # When a PR is opened or updated | |
| # | |
| # OUTPUT: | |
| # PR gets a label based on its title prefix: | |
| # - [Fix] → "Fix" label | |
| # - [Feature] → "Feature" label | |
| # - [Refactor] → "Refactor" label | |
| # - etc. | |
| # | |
| # ============================================================================= | |
| name: Auto-Label PRs | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| add_labels: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: release-drafter/release-drafter@v6 | |
| with: | |
| config-name: auto-label-config.yml | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |