attempt to use dummy files experiment with parameters of partial pipe… #1685
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: refresh-readmes | |
on: [push] | |
jobs: | |
run-make: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: perl-actions/install-with-cpanm@v1 | |
name: install perl YAML | |
with: | |
install: | | |
YAML::Syck | |
- name: run make on rules | |
working-directory: ./metadata/rules/ | |
run: make -B README.md | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
name: commit READMEs | |
with: | |
commit_message: refreshing rules README.md file | |
commit_user_email: [email protected] | |
# Please do the dirty check, don't skip | |
skip_dirty_check: false |