Skip to content

Commit eedb0ab

Browse files
committed
Merge branch 'main' into feat/template-static-files
2 parents fc983de + 9411f99 commit eedb0ab

29 files changed

+120
-477
lines changed

.github/_project-dependabot.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/sync.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.github/workflows/build-package.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/build-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions: read-all
1010

1111
jobs:
1212
build-website:
13-
uses: seedcase-project/.github/.github/workflows/reusable-build-docs-with-python.yml@main
13+
uses: seedcase-project/.github/.github/workflows/reusable-build-docs.yml@main
1414
secrets:
1515
netlify-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
1616
# This is to allow using `gh` CLI

.github/workflows/release-package.yml

Lines changed: 0 additions & 61 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release project
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
# Limit token permissions for security
9+
permissions: read-all
10+
11+
jobs:
12+
release:
13+
# This job outputs env variables `previous_version` and `current_version`.
14+
# Only give permissions for this job.
15+
permissions:
16+
contents: write
17+
uses: seedcase-project/.github/.github/workflows/reusable-release-project.yml@main
18+
with:
19+
app-id: ${{ vars.UPDATE_VERSION_APP_ID }}
20+
secrets:
21+
update-version-gh-token: ${{ secrets.UPDATE_VERSION_TOKEN }}

.github/workflows/scorecards.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/sync-files.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -26,41 +26,6 @@ venv
2626
__pycache__/
2727
*.py[cod]
2828

29-
# Python packaging and distribution
30-
.Python
31-
build/
32-
develop-eggs/
33-
dist/
34-
downloads/
35-
eggs/
36-
.eggs/
37-
lib/
38-
lib64/
39-
parts/
40-
sdist/
41-
var/
42-
wheels/
43-
share/python-wheels/
44-
*.egg-info/
45-
.installed.cfg
46-
*.egg
47-
MANIFEST
48-
49-
# Python testing and code coverage
50-
htmlcov/
51-
.tox/
52-
.nox/
53-
.coverage
54-
.coverage.*
55-
coverage.*
56-
.cache
57-
nosetests.xml
58-
*.cover
59-
*.py,cover
60-
.hypothesis/
61-
.pytest_cache/
62-
cover/
63-
6429
# MacOS
6530
.DS_Store
6631

.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)