Created
October 24, 2024 09:01
-
-
Save EmranAhmed/3634fabf10a5d24e241ed03e67ca6454 to your computer and use it in GitHub Desktop.
Revisions
-
EmranAhmed created this gist
Oct 24, 2024 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ # Example One. ```yml jobs: build: name: Build ${{ matrix.os }} - Bash runs-on: ${{ matrix.os }} if: ${{ !contains(github.event.head_commit.message, '#docs') }} ``` # Example Two. ```yml jobs: format: runs-on: ubuntu-latest if: "! contains(github.event.head_commit.message, 'wip')" ```