Skip to content

test action CI

test action CI #1

name: Fetch all tools
schedule:

Check failure on line 2 in .github/workflows/fetch_all_tools.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/fetch_all_tools.yaml

Invalid workflow file

You have an error in your yaml syntax on line 2
#Every Sunday at 8:00 am
- cron: "0 8 * * 0"
on:
workflow_dispatch:
permissions:
contents: write
jobs:
fetch-all-tools:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Install requirement
run: python -m pip install -f requirements.txt
- name: Run script
# run: bash bin/extract_all_tools.sh
run: echo "test" > results/all_tools.csv
- name: Commit all tools
run: |
git config user.name github-actions
git config user.email [email protected]
git commit -am "All tools bot"
git push