-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Job level token permissions for github actions (#6830)
* Run CUDA and ARM CI for every PR change * Remove old release artifacts regularly in a separate workflow for cleaning old releases
- Loading branch information
Showing
12 changed files
with
108 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Clean release | ||
permissions: {} | ||
on: | ||
workflow_run: # Triggered when long running macos workflow ends | ||
workflows: [macos] | ||
types: [completed] | ||
# branches: [main] | ||
|
||
jobs: | ||
clean-release: | ||
permissions: | ||
contents: write # Release upload | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Clean old release assets | ||
run: | | ||
# Total assets from each main branch commmit: | ||
# Python wheels (4x4) + Viewer (3) + C++ libs (4+2+2) = 27, | ||
release_assets=($(gh release view main-devel --json assets --jq '.assets[] | .name')) | ||
last_shas=($(git log --pretty=format:%h --abbrev-commit -n 3)) | ||
echo "Removing release assets except from last 3 commits: ${last_shas[@]}" | ||
for relass in "${release_assets[@]}"; do | ||
found=false | ||
for last_sha in "${last_shas[@]}"; do | ||
if [[ $relass == *${last_sha}* ]]; then | ||
found=true | ||
fi | ||
done | ||
if [ $found == false ]; then | ||
set -x | ||
gh release delete-asset main-devel $relass | ||
set +x | ||
fi | ||
done | ||
gh release view main-devel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.