Pull external data source Microsoft File systems driver #9
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: Pull external data source Microsoft File systems driver | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 5 1 * *" | |
jobs: | |
pull-external-data: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
- name: Pull external data and modify if needed | |
shell: pwsh | |
run: | | |
./.github/scripts/ParseFilterDriver.ps1 | |
- name: Commit updated data to repo | |
uses: stefanzweifel/git-auto-commit-action@v5 |