mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-13 17:13:53 +00:00
d72ffb448c
* set ci.yml minimal permissions Signed-off-by: Joyce <joycebrum@google.com> * set configure.yml minimal permissions Signed-off-by: Joyce <joycebrum@google.com> * set format.yml minimal permissions Signed-off-by: Joyce <joycebrum@google.com> * set pip.yml minimal permissions Signed-off-by: Joyce <joycebrum@google.com> * set upstream.yml minimal permissions Signed-off-by: Joyce <joycebrum@google.com> * set labeler.yml minimal permissions Signed-off-by: Joyce <joycebrum@google.com> * Update ci.yml to read all Signed-off-by: Joyce <joycebrum@google.com> * test labeler.yml Signed-off-by: Joyce <joycebrum@google.com> * restore the if at labeler.yml Signed-off-by: Joyce <joycebrum@google.com> --------- Signed-off-by: Joyce <joycebrum@google.com>
26 lines
641 B
YAML
26 lines
641 B
YAML
name: Labeler
|
|
on:
|
|
pull_request_target:
|
|
types: [closed]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
label:
|
|
name: Labeler
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
|
|
- uses: actions/labeler@main
|
|
if: >
|
|
github.event.pull_request.merged == true &&
|
|
!startsWith(github.event.pull_request.title, 'chore(deps):') &&
|
|
!startsWith(github.event.pull_request.title, 'ci(fix):') &&
|
|
!startsWith(github.event.pull_request.title, 'docs(changelog):')
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
configuration-path: .github/labeler_merged.yml
|