Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix github workflows #36

Merged
merged 2 commits into from
Jul 11, 2022
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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,18 @@ name: CI
on:
push:
branches: [ dev-2.x ]
paths-ignore:
- 'docs/**'
- '*.md'
- '*.rst'
- 'benchmarks/**'
pull_request:
branches: [ dev-2.x ]
paths-ignore:
- 'docs/**'
- '*.md'
- '*.rst'
- 'benchmarks/**'

jobs:
build:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/locks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copied from https://github.com/pallets/flask/blob/main/.github/workflows/lock.yaml

# This does not automatically close "stale" issues. Instead, it locks closed issues after 3 weeks of no activity.
# If there's a new issue related to an old one, we've found it's much easier to work on as a new issue.

name: 'Lock threads'

on:
schedule:
- cron: '0 0 * * *'

jobs:
lock:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v3
with:
github-token: ${{ github.token }}
issue-inactive-days: 21
pr-inactive-days: 21