Trigger ETL #1
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: Trigger ETL | |
on: | |
push: | |
paths: | |
- "input/**" | |
workflow_dispatch: | |
jobs: | |
trigger-etl: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'github-actions[bot]' }} | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
repository: imaginerio/imaginerio-etl | |
event-type: submodule-update |