summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/grafana/.github/workflows/fragment.yml
blob: 3e1ebe73c550945fa9b093240c56e6328fed9631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
on: 
  pull_request:

name: Check changelog fragment
jobs:
  check_fragment:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 0

    - name: Check that changelog fragment exists
      run: ./hacking/check_fragment.sh
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        PR_NUMBER: ${{ github.event.number }}