Skip to content

disable shedule runs #1416

disable shedule runs

disable shedule runs #1416

Workflow file for this run

name: extract

Check failure on line 1 in .github/workflows/extract.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/extract.yml

Invalid workflow file

`schedule` accepts a list of one or more maps with the `cron` key set
on:
schedule: [] # disable scheduled runs
# - cron: '0 */12 * * *'
workflow_dispatch: {}
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
# - uses: actions/cache@v2
# with:
# path: ${{ env.pythonLocation }}
# key: ${{ hashFiles('meltano.yml') }}-pip
- run: python -m pip install meltano==3.1.0
# - uses: actions/cache@v2
# with:
# path: ./.meltano
# key: ${{ hashFiles('meltano.yml') }}-meltano
- run: meltano install
- run: rm output/*.jsonl
- run: meltano el tap-wordpress target-jsonl
# - uses: actions/upload-artifact@v2
# with:
# name: output
# path: output/*.jsonl
- name: push changes to remote
continue-on-error: true
run: |
git config --global user.name "Luis Atala"
git config --global user.email "[email protected]"
git add output
git commit -m "update output file"
git push