update_catalog.yaml 674 B

1234567891011121314151617181920212223242526
  1. name: catalog_update
  2. on:
  3. push:
  4. branches:
  5. - 'master'
  6. jobs:
  7. validate:
  8. runs-on: ubuntu-latest
  9. container:
  10. image: ixsystems/catalog_validation:latest
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: Update catalog details
  14. run: |
  15. /bin/bash -c "PWD=${pwd}; /usr/local/bin/catalog_update update --path $PWD"
  16. - uses: stefanzweifel/git-auto-commit-action@v4
  17. with:
  18. commit_message: Update catalog information
  19. file_pattern: 'catalog.json'
  20. commit_user_name: sonicaj
  21. commit_user_email: waqarsonic1@gmail.com
  22. commit_author: sonicaj <waqarsonic1@gmail.com>