Skip to content

Commit df14aa0

Browse files
committed
check crates owner
1 parent e801c8f commit df14aa0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/check-releasability.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,20 @@ jobs:
5151
feature_list=`toml get Cargo.toml features | jq -c 'keys'`
5252
echo "features=$feature_list" >> $GITHUB_OUTPUT
5353
54+
owner-check:
55+
name: Check
56+
needs: [split-crates]
57+
runs-on: ubuntu-latest
58+
strategy:
59+
fail-fast: false
60+
matrix:
61+
crate: ${{ fromJSON(needs.split-crates.outputs.crates) }}
62+
owner: ["Carter Anderson", "github:bevyengine:publish"]
63+
steps:
64+
- name: check owner
65+
run: |
66+
cargo owner --list ${{ matrix.crate }} | grep ${{ matrix.owner }}
67+
5468
crate-check:
5569
name: Check
5670
needs: [split-crates]

0 commit comments

Comments
 (0)