update-fogle-submod #221
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: Update FOGLTLOGLES | |
| on: | |
| repository_dispatch: | |
| types: [update-fogle-submod] | |
| jobs: | |
| update: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Update FOGLTLOGLES | |
| run: | | |
| git submodule update --init --depth=1 --remote | |
| - name: Commit & Push changes | |
| uses: actions-js/push@master | |
| with: | |
| message: "Update FOGLTLOGLES" | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |