Bump actions/checkout from 4.2.1 to 4.2.2 #45
Workflow file for this run
This file contains 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 characters
--- | |
name: Pull Request | |
on: | |
# Enable manual running of action if necessary | |
workflow_dispatch: | |
# Test build/deploy on PRs to main/master | |
pull_request: | |
# Only publish on push to main branch | |
branches: | |
- main | |
# Don't trigger if it's just a documentation update | |
paths-ignore: | |
- "**.md" | |
- "**.MD" | |
- "**.yml" | |
- "LICENSE" | |
- ".gitattributes" | |
- ".gitignore" | |
- ".dockerignore" | |
jobs: | |
test-build: | |
name: Test | |
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main | |
with: | |
push_enabled: false |