Published at
Updated at
Reading time
1min

Ryan Chandler wrote the quick post Running GitHub Actions for Certain Commit Messages.

I built a few projects with GitHub actions. The technology is great, but unfortunately, the documentation gave me a hard time.

This post is a quick bookmark for my future self. ๐Ÿ˜Š

jobs:
  format:
    runs-on: ubuntu-latest
    if: "! contains(github.event.head_commit.message, 'wip')"

This (โ˜๏ธ) is how you can limit the execution of GitHub actions depending on a commit message. :)

Was this snippet helpful?
Yes? Cool! You might want to check out Web Weekly for more snippets. The last edition went out 6 days ago.
Stefan standing in the park in front of a green background

About Stefan Judis

Frontend nerd with over ten years of experience, freelance dev, "Today I Learned" blogger, conference speaker, and Open Source maintainer.

Related Topics

Related Articles