This commit is contained in:
Matthew Sevey 2022-05-16 14:53:06 -04:00
parent 9314470c67
commit b34e1927da
No known key found for this signature in database
GPG Key ID: 9ADDD344F13057F6
3 changed files with 5 additions and 3 deletions

View File

@ -55,8 +55,6 @@ jobs:
with: with:
fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags
- uses: SkynetLabs/.github/.github/actions/changes-since-last-tag@master - uses: SkynetLabs/.github/.github/actions/changes-since-last-tag@master
with:
working-directory: ${{ defaults.working-directory }}
# Make a release if # Make a release if
# - there were changes and this is a scheduled job # - there were changes and this is a scheduled job

View File

@ -4,7 +4,7 @@ on:
push: push:
branches: branches:
- master - master
pull_request: # pull_request:
jobs: jobs:
hadolint: hadolint:

View File

@ -20,5 +20,9 @@
"devDependencies": { "devDependencies": {
"jest": "^28.0.3", "jest": "^28.0.3",
"prettier": "^2.6.2" "prettier": "^2.6.2"
},
"scripts": {
"lint": "echo 'Warning: no lint script specified'",
"test": "echo 'Warning: no test script specified'"
} }
} }