-
Notifications
You must be signed in to change notification settings - Fork 4
83 lines (65 loc) · 2.13 KB
/
template_update_gh.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Template check
on:
push:
jobs:
validate-default-gh-instance:
runs-on: ubuntu-latest
container: python:3.11
permissions:
contents: read
pages: write
env:
GH_TEST_REPO_TOKEN: ${{ secrets.REPO_KEY_GITLAB }}
steps:
- uses: actions/checkout@v4
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Create Github project instance
run: cookiecutter . --no-input --config-file cookiecutter_default_gh.yaml
- name: Remote checkout
uses: actions/checkout@v4
with:
path: ds-gh-default2
ref: main
repository: karllu3/ds-lk-default
token: ${{ env.GH_TEST_REPO_TOKEN }}
fetch-depth: 0
persist-credentials: false
ssh-user: karllu3
- name: Set safe directory
run: |
git config --global --add safe.directory /__w/ds-template/ds-template
- name: cp repo
run:
cp -r ds-gh-default/. ds-gh-default2
- name: ls repo
run:
ls -al ds-gh-default2
- name: Prepare git5
working-directory: ./ds-gh-default2
run: |
git config --local user.email "[email protected]"
git config --local user.name "lukasz karlowski"
git checkout -b ds-default-check
git add .
- name: Validate package build
working-directory: ./ds-gh-default2
run: |
python -m pip install .
- name: Install pre-commit
run: pip3 install pre-commit
- name: Run pre-commit checks
working-directory: ./ds-gh-default2
run: pre-commit run --all-files --show-diff-on-failure --color always
- name: Push repo
working-directory: ./ds-gh-default2
run: |
git commit -m "Repo after creation"
git push --set-upstream origin ds-default-check