-
Notifications
You must be signed in to change notification settings - Fork 37
45 lines (38 loc) · 1.19 KB
/
test-transform.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
45
name: Transform and sync
on:
push:
branches:
- hongda-work
jobs:
nilakkhana-transform:
runs-on: ubuntu-latest
steps:
- name: Checkout hongda-work branch
uses: actions/checkout@v3
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11.3
- name: Execute Python script to transform
run: |
python .nilakkhana/process_all_supported_files.py
- name: Check for changes
id: check-changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "There are changes to commit."
echo "changes=true" >> $GITHUB_OUTPUT
else
echo "No changes to commit."
echo "changes=false" >> $GITHUB_OUTPUT
fi
- name: Push changes
if: steps.check-changes.outputs.changes == 'true'
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "[GHA] Nilakkhana transform"
git push origin hongda-work:hongda-work