Skip to content

Commit

Permalink
Merge pull request #203 from Chia-Network/add-gh-token
Browse files Browse the repository at this point in the history
ci: add github token to workflow
  • Loading branch information
TheLastCicada authored Dec 17, 2024
2 parents 091390c + c902df5 commit 2c7571f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/auto-release-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }}

- name: Check for current version tag. Create if it doesn't exist
env:
GH_TOKEN: ${{ github.token }}
run: |
stable_version=$(gh release list --limit 1 --order desc --exclude-pre-releases --json tagName --jq ".[].tagName")
echo "Latest release is $stable_version"
Expand Down
2 changes: 1 addition & 1 deletion climate-token-driver
Submodule climate-token-driver updated 79 files
+1 −0 .env.example
+10 −0 .flake8
+7 −0 .github/dependabot.yml
+61 −0 .github/workflows/auto-release.yml
+261 −74 .github/workflows/build-installers.yaml
+46 −0 .github/workflows/ensure-version-increment.yml
+68 −0 .github/workflows/pre-commit.yml
+44 −0 .github/workflows/release-notes.yml
+77 −0 .github/workflows/tests.yaml
+1 −0 .gitignore
+0 −3 .gitmodules
+4 −0 .isort.cfg
+1 −0 .nvmrc
+40 −43 .pre-commit-config.yaml
+4 −0 .repo-content-updater.yaml
+162 −0 CHANGELOG.md
+201 −0 LICENSE
+171 −33 README.md
+17 −8 app/api/dependencies.py
+2 −0 app/api/v1/__init__.py
+124 −11 app/api/v1/activities.py
+11 −2 app/api/v1/core.py
+88 −55 app/api/v1/cron.py
+14 −19 app/api/v1/keys.py
+20 −0 app/api/v1/organizations.py
+59 −49 app/api/v1/tokens.py
+16 −28 app/api/v1/transactions.py
+40 −23 app/config.py
+16 −13 app/core/chialisp/gateway.py
+2 −0 app/core/chialisp/load_clvm.py
+7 −10 app/core/chialisp/tail.py
+144 −166 app/core/climate_wallet/wallet.py
+23 −41 app/core/climate_wallet/wallet_utils.py
+6 −6 app/core/derive_keys.py
+25 −27 app/core/types.py
+29 −39 app/core/utils.py
+2 −0 app/crud/__init__.py
+129 −73 app/crud/chia.py
+27 −27 app/crud/db.py
+2 −0 app/db/base.py
+6 −11 app/db/session.py
+6 −4 app/errors.py
+10 −2 app/logger.py
+34 −10 app/main.py
+4 −0 app/models/__init__.py
+4 −11 app/models/activity.py
+3 −1 app/models/state.py
+10 −7 app/schemas/__init__.py
+12 −3 app/schemas/activity.py
+7 −5 app/schemas/core.py
+2 −0 app/schemas/key.py
+2 −0 app/schemas/metadata.py
+5 −1 app/schemas/payment.py
+2 −0 app/schemas/state.py
+14 −17 app/schemas/token.py
+2 −0 app/schemas/transaction.py
+2 −0 app/schemas/types.py
+27 −12 app/utils.py
+39 −0 build-scripts/deb/[email protected]
+0 −1 chia-blockchain
+9 −3 config.yaml
+0 −27 docker-compose.yaml
+0 −65 dockerfile/Dockerfile.chia-blockchain
+0 −25 dockerfile/Dockerfile.ivern
+0 −98 dockerfile/docker-entrypoint.sh
+0 −119 dockerfile/docker-healthcheck.sh
+0 −15 dockerfile/docker-start.sh
+25 −0 mypy.ini
+2,337 −1,323 poetry.lock
+10 −4 pyinstaller.spec
+46 −13 pyproject.toml
+21 −0 pytest.ini
+12 −16 tests/conftest.py
+121 −105 tests/test_activities_api.py
+33 −48 tests/test_cat_lifecycle.py
+427 −314 tests/test_cat_workflow.py
+161 −110 tests/test_crud_chia.py
+4 −2 tests/test_crud_core.py
+23 −0 tests/test_disallow.py

0 comments on commit 2c7571f

Please sign in to comment.