Skip to content

Commit

Permalink
Create safety-net.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kloptops authored Nov 13, 2024
1 parent baf7ed7 commit baf72d7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/safety-net.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Safety Net
# This is just to make sure no one slips in a modified workflow or tools.

on:
pull_request:
paths:
- '.github/workflows/**'
- 'tools/**'
branches:
- main

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a set of commands using the runners shell
- name: Safety Check
run: |
exit 255

0 comments on commit baf72d7

Please sign in to comment.