prevent changing collections when hide_passwords is true #338
Workflow file for this run
This file contains hidden or 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: Check templates | |
permissions: {} | |
on: [ push, pull_request ] | |
jobs: | |
docker-templates: | |
name: Validate docker templates | |
permissions: | |
contents: read | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 30 | |
steps: | |
# Checkout the repo | |
- name: "Checkout" | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0 | |
with: | |
persist-credentials: false | |
# End Checkout the repo | |
- name: Run make to rebuild templates | |
working-directory: docker | |
run: make | |
- name: Check for unstaged changes | |
working-directory: docker | |
run: git diff --exit-code | |
continue-on-error: false |