Skip to content

Commit

Permalink
Test default repo settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuart Izon committed Jan 5, 2024
1 parent c771689 commit fb35db9
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,23 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- id: abandoned
- name: External Repo
id: external
uses: RelationalAI/abandoned@main
with:
days: 7
repository: RelationalAI/rai-cli
token: ${{ github.token }}
- run: |
length=$(jq '. | length' <<< ${{toJson(steps.abandoned.outputs.pulls) }})
length=$(jq '. | length' <<< ${{toJson(steps.external.outputs.pulls) }})
echo Found $length abandoned PRs
- name: Default Repo
id: default
uses: RelationalAI/abandoned@main
with:
days: 7
token: ${{ github.token }}
- run: |
length=$(jq '. | length' <<< ${{toJson(steps.default.outputs.pulls) }})
echo Found $length abandoned PRs

0 comments on commit fb35db9

Please sign in to comment.