Improvement: Merge placing and interacting into one as they are the same on a granular level #127
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: Pull Request Labeler | |
| on: | |
| issues: | |
| types: [opened] | |
| branches: | |
| - '1.21.5' | |
| pull_request: | |
| types: [opened] | |
| branches: | |
| - '1.21.5' | |
| permissions: | |
| issues: write | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Repository | |
| uses: actions/checkout@v4 | |
| - name: Labeler | |
| uses: srvaroa/[email protected] | |
| with: | |
| config_path: .github/workflows/labeler/labeler-config.yml | |
| use_local_config: false | |
| fail_on_error: true | |
| env: | |
| GITHUB_TOKEN: "${{ github.token }}" |