Skip to content

Commit

Permalink
fix: implements pagination over 100 workflow runs
Browse files Browse the repository at this point in the history
  • Loading branch information
igorjs committed Jul 2, 2022
1 parent 8c87a3f commit 226d7c8
Show file tree
Hide file tree
Showing 12 changed files with 185 additions and 181 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Expand Up @@ -4,9 +4,9 @@ updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
interval: monthly

- package-ecosystem: npm
directory: /
schedule:
interval: daily
interval: monthly
4 changes: 1 addition & 3 deletions .github/workflows/check.yml
Expand Up @@ -6,14 +6,12 @@
name: Check Dist

on:
pull_request:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'

jobs:
check-dist:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/clean.yml
Expand Up @@ -12,9 +12,10 @@ jobs:
clean-logs:
runs-on: ubuntu-latest
steps:
- uses: igorjs/github-clean-workflow-action@main
- uses: actions/checkout@v2
- uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
owner: ${{ github.repository_owner }}
repo: ${{ github.event.repository.name }}
days_old: ${{ github.event.inputs.days_old }}
# owner: ${{ github.repository_owner }}
# repo: ${{ github.event.repository.name }}
days_old: 0
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 17
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 17
node-version: 16.x
- name: Run Tests
run: |
npm ci
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
16
4 changes: 2 additions & 2 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sourcemap-register.js

Large diffs are not rendered by default.

0 comments on commit 226d7c8

Please sign in to comment.