mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-13 09:03:54 +00:00
e4e5c49a26
* docs: FAQ CMake updates * docs: limitations * ci: don't over label * docs: update CHANGELOG, add a bit more structure * ci: label PRs with more labels, and sooner * docs: updates from @rwgk * docs: address @YannickJadoul's points
16 lines
399 B
YAML
16 lines
399 B
YAML
name: PR merged
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, synchronize, edited, closed]
|
|
|
|
jobs:
|
|
label-merged:
|
|
name: Changelog needed
|
|
runs-on: ubuntu-latest
|
|
if: "!(github.event.action == 'closed' && github.event.pull_request.merged == false)"
|
|
steps:
|
|
- uses: actions/labeler@main
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
sync-labels: true
|