Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
commit-message:
prefix: "chore: "
24 changes: 3 additions & 21 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ on:
branches:
- main

workflow_dispatch:

env:
POETRY_VERSION: 1.3.0
CACHE_NUMBER: 6

jobs:
release:
# Run if we have a label `release` on a merged PR
Expand All @@ -22,26 +16,14 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: ${{ inputs.poetry_version }}
- name: Cache Pip
uses: actions/cache@v3
with:
path: ~/.pip
key: pip${{ inputs.cache_number }}-PT${{ inputs.poetry_version }}
- run: poetry install

- name: Configure git
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'gha@prql-lang.org'

- name: Python Semantic Release
uses: relekang/python-semantic-release@master
uses: python-semantic-release/python-semantic-release@v7.33.2
with:
github_token: ${{ secrets.PRQL_BOT_GH_TOKEN }}
repository_username: __token__
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ license = "Apache-2.0"
name = "pyprql"
readme = "README.md"
repository = "https://github.com/prql/pyprql"
version = "0.5.14"
version = "0.5.13"

[tool.poetry.dependencies]
python = "^3.8"
Expand Down