Commit ca1a334e authored by Josh Spicer's avatar Josh Spicer Committed by GitHub

Add CI ignore

parent 3b55d6e9
name: "Shell script linter" name: "(CI) Shell Script Linter"
on: on:
push: push:
branches: branches:
...@@ -8,6 +8,7 @@ on: ...@@ -8,6 +8,7 @@ on:
jobs: jobs:
shellchecker: shellchecker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')"
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
......
name: "Shell script linter (manual)" name: "(Manual) Shell Script Linter"
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
......
name: "Package dev container features (v1)" name: "(Release-v1) Package dev container features (v1)"
on: on:
push: push:
tags: tags:
......
name: "Release dev container features (v2)" name: "(Release) Release dev container features (v2)"
on: on:
push: push:
tags: tags:
......
name: "Test Features (CI)" name: "(CI) Test Features"
on: on:
push: push:
branches: branches:
...@@ -8,6 +8,7 @@ on: ...@@ -8,6 +8,7 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')"
continue-on-error: true continue-on-error: true
strategy: strategy:
matrix: matrix:
......
name: "Test Features (Manual)" name: "(Manual) Test Features"
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
......
name: "Test updated features (PR)" name: "(PR) Test Updated Features"
on: on:
pull_request: pull_request:
jobs: jobs:
detect-changes: detect-changes:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')"
outputs: outputs:
features: ${{ steps.filter.outputs.changes }} features: ${{ steps.filter.outputs.changes }}
steps: steps:
......
...@@ -9,6 +9,7 @@ on: ...@@ -9,6 +9,7 @@ on:
jobs: jobs:
scenarios: scenarios:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')"
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: " Running predefined test scenarios" - name: " Running predefined test scenarios"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment