From f42998bab7a5a39daf78638e61e2b8ed873badaa Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 5 Apr 2022 09:24:03 -1000 Subject: [PATCH] ci: push: really run for all file changes so that they get the success status and can then be pushed to master. --- .github/workflows/push.yml | 56 ++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 8ce6f0ed5..61d888438 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,35 +14,33 @@ name: push CI on: push: branches: [ simon ] - paths: - - '.github/workflows/push.yml' - - 'stack*.yaml' - - 'hledger-lib/**' - - 'hledger/**' - - 'hledger-ui/**' - - 'hledger-web/**' - - 'bin/*.hs' - - 'examples/**' - - # Run this workflow on changes to any file, including trivial doc fixes, - # since a successful run is required before merging into master. - # Hopefully caching will keep it relatively cheap. - - # # ignore certain boring paths completely (even if the commit message didn't begin with ;). - # # XXX it would still be nice to check the commit messages. - # # - # # ignore changes to (most?) example files, though some func tests depend on them - # - '!**.journal' - # - '!**.j' - # - '!**.ledger' - # - '!**.csv' - # # ignore changes to doc source files - # - '!**.m4' - # - '!**.md' - # - '!**.1' - # - '!**.5' - # - '!**.info' - # - '!**.txt' + # Run this workflow on changes to any file, including trivial doc fixes, + # since a successful run is required before merging into master. + # Hopefully caching will keep it relatively cheap. + # paths: + # - '.github/workflows/push.yml' + # - 'stack*.yaml' + # - 'hledger-lib/**' + # - 'hledger/**' + # - 'hledger-ui/**' + # - 'hledger-web/**' + # - 'bin/*.hs' + # - 'examples/**' + # # ignore certain boring paths completely (even if the commit message didn't begin with ;). + # # XXX it would still be nice to check the commit messages. + # # + # # ignore changes to (most?) example files, though some func tests depend on them + # - '!**.journal' + # - '!**.j' + # - '!**.ledger' + # - '!**.csv' + # # ignore changes to doc source files + # - '!**.m4' + # - '!**.md' + # - '!**.1' + # - '!**.5' + # - '!**.info' + # - '!**.txt' # also allow this workflow to be triggered manually workflow_dispatch: