Can't set the value of a DateTimeField with auto_now or auto_now_add #23 #588
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog Reminder | |
on: pull_request | |
jobs: | |
remind: | |
runs-on: ubuntu-22.04 | |
if: | | |
!contains(github.event.pull_request.body, '[skip changelog]') && | |
(github.actor != 'dependabot[bot]') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: ${{ github.event.pull_request.commits }} + 1 | |
- name: Check that CHANGELOG is updated | |
run: git diff origin/${{ github.base_ref }} --name-only | grep CHANGELOG.md |