iceberg-python icon indicating copy to clipboard operation
iceberg-python copied to clipboard

Add labeler

Open Fokko opened this issue 1 year ago • 2 comments

To add the ability to filter on specific components.

The list of labels is probably not exhaustive, but is a first start.

Fokko avatar Mar 25 '24 16:03 Fokko

Shall we also add a workflow that use these labels in this PR?. As suggested in https://github.com/marketplace/actions/labeler

.github/workflows/labeler.yml

name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
  labeler:
    permissions:
      contents: read
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
    - uses: actions/labeler@v5

HonahX avatar Mar 26 '24 01:03 HonahX

I'm +1 for adding the sync-labels as well, it sounds like it could be helpful

name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
  labeler:
    permissions:
      contents: read
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
    - uses: actions/labeler@v5
      with:
        sync-labels: true

sungwy avatar May 02 '24 21:05 sungwy