ci: push: edit

This commit is contained in:
Simon Michael 2022-04-05 09:38:49 -10:00
parent 326a314052
commit d84f2b4eb8

View File

@ -14,9 +14,11 @@ name: push CI
on: on:
push: push:
branches: [ simon ] branches: [ simon ]
# Run this workflow on changes to any file, including trivial doc fixes, # Run this workflow for changes to any file, even trivial doc fixes
# since a successful run is required before merging into master. # (since merging to master requires a successful run).
# Hopefully caching will keep it relatively cheap. # Ideally caching will keep it relatively cheap; avoid over-pushing.
# Run this workflow only for changes to these files (to avoid waste):
# paths: # paths:
# - '.github/workflows/push.yml' # - '.github/workflows/push.yml'
# - 'stack*.yaml' # - 'stack*.yaml'
@ -26,15 +28,13 @@ on:
# - 'hledger-web/**' # - 'hledger-web/**'
# - 'bin/*.hs' # - 'bin/*.hs'
# - 'examples/**' # - 'examples/**'
# # ignore certain boring paths completely (even if the commit message didn't begin with ;). # # and ignore these files: (XXX it would still be nice to check the commit messages)
# # XXX it would still be nice to check the commit messages. # # examples
# #
# # ignore changes to (most?) example files, though some func tests depend on them
# - '!**.journal' # - '!**.journal'
# - '!**.j' # - '!**.j'
# - '!**.ledger' # - '!**.ledger'
# - '!**.csv' # - '!**.csv'
# # ignore changes to doc source files # # docs
# - '!**.m4' # - '!**.m4'
# - '!**.md' # - '!**.md'
# - '!**.1' # - '!**.1'