Skip to content

Commit fe90a87

Browse files
committed
rate limit curls
1 parent b4753da commit fe90a87

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/check-releasability.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,23 @@ jobs:
5252
echo "features=$feature_list" >> $GITHUB_OUTPUT
5353
5454
owner-check:
55-
name: Check
55+
name: Owner Check
5656
needs: [split-crates]
5757
runs-on: ubuntu-latest
5858
strategy:
59+
max-parallel: 1
5960
fail-fast: false
6061
matrix:
6162
crate: ${{ fromJSON(needs.split-crates.outputs.crates) }}
6263
owner: ["Carter Anderson", "github:bevyengine:publish"]
6364
steps:
6465
- name: check owner
6566
run: |
66-
curl https://crates.io/api/v1/crates/${{ matrix.crate }}/owners | grep '${{ matrix.owner }}'
67+
curl --user-agent "francois@bevy.org" https://crates.io/api/v1/crates/${{ matrix.crate }}/owners | grep '${{ matrix.owner }}'
68+
sleep 2
6769
6870
crate-check:
69-
name: Check
71+
name: Crate Check
7072
needs: [split-crates]
7173
runs-on: ubuntu-latest
7274
strategy:

0 commit comments

Comments
 (0)