(MAINT) test vmpooler #355
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: Format yaml files | |
on: | |
pull_request: | |
branches: [main] | |
paths: ['**/*.yml', '**/*.yaml'] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
format-yaml-files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get file changes | |
id: get_file_changes | |
uses: trilom/[email protected] | |
with: | |
output: ' ' | |
- name: Select only the yaml files | |
id: changed_yaml_files | |
run: | | |
echo ${{ steps.get_file_changes.outputs.files }} | xargs -n 1 | grep -E "\.yml$|\.yaml$" > changed_files.txt | |
# Remove dependabot.yml if it exists in the list | |
sed -i '/.github\/dependabot.yml/d' changed_files.txt || true | |
yaml_files=$(cat changed_files.txt | tr '\n' ' ') | |
rm changed_files.txt | |
echo "files=${yaml_files}" >> $GITHUB_OUTPUT | |
- name: Yamlfix | |
id: yamlfix | |
uses: comfucios/[email protected] | |
with: | |
files: ${{ steps.changed_yaml_files.outputs.files }} | |
- name: commit-changes | |
if: ${{ steps.yamlfix.outputs.changed_files == 'true' }} | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply Yamlfix format changes. | |
status_options: --untracked-files=no |