-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (34 loc) · 1022 Bytes
/
batch-3.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: github batch 3
on:
schedule:
- cron: '35 7 * * *'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install dependencies
run: pip install -r requirements.txt
- name: collect data
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./src/main.py github canonical craft-store
./src/main.py github canonical rockcraft
./src/main.py github snapcore snapcraft
- name: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "ci: update craft-store, rockcraft, snapcraft data"