File: pull_request.yml

package info (click to toggle)
spotipy 2.25.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 508 kB
  • sloc: python: 3,453; makefile: 127; sh: 5
file content (15 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: "Pull Request Workflow"
on:
  pull_request:
    types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]

jobs:
  # Enforces the update of a changelog file on every pull request
  changelog:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v4
      - uses: dangoslen/changelog-enforcer@v3.6.1
        with:
          changeLogPath: 'CHANGELOG.md'
          skipLabel: 'skip-changelog'