Domain Content Resolver -> Master #1
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
# Actions that only run when opening or updating pull requests | |
name: Docker Health Checks | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- master | |
jobs: | |
pinning: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source | |
uses: actions/checkout@v2 | |
- run: chmod 755 ./scripts/check-docker-pin.sh | |
- run: ./scripts/check-docker-pin.sh |