Skip to content

Commit

Permalink
Smaller format for action yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
FPtje committed Mar 20, 2024
1 parent 3b5f2d9 commit 6644a97
Showing 1 changed file with 20 additions and 28 deletions.
48 changes: 20 additions & 28 deletions .github/workflows/check-modified-subtree.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@

name : Check Modified Subtree


on :
workflow_dispatch :

pull_request :
branches : [ master ]


jobs :
check :

runs-on : ubuntu-latest

steps :



- name : Checkout Repository
uses : actions/checkout@v4
with :
fetch-depth : 0 # Fetch complete history
clean : false

- name : Check For Differences
run : ./.github/scripts/check-modified-subtree.sh
name: Check Modified Subtree

on:
workflow_dispatch:

pull_request:
branches: [master]

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch complete history
clean: false

- name: Check For Differences
run: ./.github/scripts/check-modified-subtree.sh

0 comments on commit 6644a97

Please sign in to comment.