[pip] Bump starlette from 0.41.0 to 0.41.2 #102
Workflow file for this run
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
name: Trigger PR sensitive workflows | |
on: pull_request # Require approval | |
# IMPORTANT: Change settings in Actions/General to "Require approval for all outside collaborators". | |
# Before approving workflow from public forks, triple check the code. | |
permissions: | |
contents: read | |
jobs: | |
pr-info: | |
name: Get pull request info | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save pull request info | |
run: | | |
echo "number=${{ github.event.pull_request.number}}" > pr.txt | |
echo "sha=${{ github.event.pull_request.head.sha }}" >> pr.txt | |
- name: Upload pull request info | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pull-request-info | |
path: pr.txt |