-
Notifications
You must be signed in to change notification settings - Fork 151
44 lines (35 loc) · 1.08 KB
/
added_dates.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
36
37
38
39
40
41
42
43
44
name: Add Added dates to the catalog files
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.YUNOHOST_BOT_TOKEN }}
fetch-depth: 0
- uses: actions/checkout@v4
with:
repository: YunoHost/apps-tools
path: tools
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Python dependencies
run: |
pip3 install -r tools/requirements.txt
- name: Add added dates to catalog files
run: |
./tools/save_added_date.py --apps-dir .
- uses: uncenter/setup-taplo@v1
- run: taplo fmt
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Automatically add dates to the catalog files"
file_pattern: 'apps.toml wishlist.toml graveyard.toml'
commit_user_name: yunohost-bot
commit_user_email: [email protected]
commit_author: 'yunohost-bot <[email protected]>'