github.com/cs3org/reva/v2@v2.27.7/.github/workflows/changelog.yml (about)

     1  name: Check Changelog
     2  on:
     3    pull_request:
     4      paths-ignore:
     5        - ".github/**"
     6        - "Makefile"
     7        - "tools/**"
     8        - "docs/**"
     9        - "tests/**"
    10        - ".drone.star"
    11        - ".drone.env"
    12        - ".fossa.yml"
    13        - ".gitignore"
    14        - ".gitmodules"
    15        - "go.mod"
    16        - "go.sum"
    17  
    18  jobs:
    19    check-changelog:
    20      runs-on: self-hosted
    21      steps:
    22        - name: Checkout
    23          uses: actions/checkout@v3.1.0
    24        - name: Setup Go environment
    25          uses: actions/setup-go@v3.3.0
    26          with:
    27            go-version-file: go.mod
    28        - name: Check changelog
    29          run: make check-changelog PR=${{ github.event.pull_request.number }}