mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
16 lines
431 B
YAML
16 lines
431 B
YAML
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'
|
|
skipLabels: 'skip-changelog'
|