File tree Expand file tree Collapse file tree 4 files changed +12
-15
lines changed
python-package-shared-setup Expand file tree Collapse file tree 4 files changed +12
-15
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -24,13 +24,12 @@ jobs:
24
24
with :
25
25
python-version : 3.12
26
26
- name : Format
27
- working-directory : examples
28
27
run : rye run clean
29
28
- name : Commit changes
30
29
run : |
31
30
git config --local user.email "github-actions[bot]@users.noreply.github.com"
32
31
git config --local user.name "github-actions[bot]"
33
- git add examples/ .
32
+ git add .
34
33
git commit -m ":art: Cleaned" || exit 0
35
34
- name : Push changes
36
35
uses : ad-m/github-push-action@master
50
49
with :
51
50
filters : |
52
51
addedOrModified:
53
- - added|deleted: 'examples /**/*.ipynb'
52
+ - added|deleted: '. /**/*.ipynb'
54
53
# Create readme if the above job shows true using rye run create-readme
55
54
create :
56
55
needs : changes
@@ -65,13 +64,12 @@ jobs:
65
64
with :
66
65
python-version : 3.12
67
66
- name : Create readme
68
- working-directory : examples
69
67
run : rye run create-readme
70
68
- name : Commit changes
71
69
run : |
72
70
git config --local user.email "github-actions[bot]@users.noreply.github.com"
73
71
git config --local user.name "github-actions[bot]"
74
- git add examples/ .
72
+ git add .
75
73
git commit -m ":memo: README updated" || exit 0
76
74
- name : Push changes
77
75
uses : ad-m/github-push-action@master
Original file line number Diff line number Diff line change 18
18
with :
19
19
python-version : 3.12
20
20
- name : Create readme
21
- working-directory : examples
22
21
run : rye run create-doc-readme
23
22
- name : Run `custompages` command
24
23
uses : readmeio/rdme@v8
25
24
with :
26
- rdme : custompages examples /tutorials.html --key=${{ secrets.README_API_KEY }}
25
+ rdme : custompages . /tutorials.html --key=${{ secrets.README_API_KEY }}
Original file line number Diff line number Diff line change 7
7
TruffleHog :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - name : Checkout code
11
- uses : actions/checkout@v4
12
- with :
13
- fetch-depth : 0
14
- - name : Secret Scanning
15
- uses : trufflesecurity/trufflehog@main
16
- with :
17
- extra_args : --only-verified
10
+ - name : Checkout code
11
+ uses : actions/checkout@v4
12
+ with :
13
+ fetch-depth : 0
14
+ - name : Secret Scanning
15
+ uses : trufflesecurity/trufflehog@main
16
+ with :
17
+ extra_args : --only-verified
You can’t perform that action at this time.
0 commit comments