[twitter] implement 'cursor' support (#5753)

This commit is contained in:
Mike Fährmann
2024-07-04 23:44:52 +02:00
parent 162756b684
commit 97a50a23d2
4 changed files with 103 additions and 29 deletions

View File

@@ -22,7 +22,10 @@ jobs:
runs-on: ubuntu-latest
# on release commits, run only for tag event
if: ${{ ! startsWith( github.event.head_commit.message , 'release version ' ) || startsWith( github.ref , 'refs/tags/v' ) }}
if: |
github.repository == 'mikf/gallery-dl' &&
( ! startsWith( github.event.head_commit.message , 'release version ' ) ||
startsWith( github.ref , 'refs/tags/v' ) )
steps:
- uses: actions/checkout@v4

View File

@@ -14,6 +14,7 @@ env:
jobs:
build:
if: github.repository == 'mikf/gallery-dl'
runs-on: ${{ matrix.os }}
defaults:
run:

View File

@@ -20,6 +20,7 @@ concurrency:
jobs:
dispatch:
if: github.repository == 'mikf/gallery-dl'
runs-on: ubuntu-latest
steps: