Running GitHub Actions for Certain Commit Messages
Now, whenever I push a wip commit or any commit that contains the word wip, it will be marked as skipped inside of GitHub actions.
jobs:
format:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, 'wip')"
Any commit that contains [build] will now trigger these jobs, everything else will be skipped.
jobs:
format:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, '[build]')"
