diff --git a/.forgejo/workflows/pr.yaml b/.forgejo/workflows/pr.yaml index d55279a..8b4816d 100644 --- a/.forgejo/workflows/pr.yaml +++ b/.forgejo/workflows/pr.yaml @@ -2,6 +2,9 @@ name: PR-Build on: push: branches: + - '*' # matches every branch that doesn't contain a '/' + - '*/*' # matches every branch containing a single '/' + - '**' # matches every branch - '!master' # excludes master - '!main' # excludes main diff --git a/requirements.txt b/requirements.txt index 8d2be1c..9020bc5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ flask==3.1.2 gunicorn==23.0.0 -pypdf==5.8.0 +pypdf==6.1.1 # For testing pytest==8.3.2