[GHSA-v9v8-jp27-55gf] marimo before 0.23.15 contains a configuration injection... #8531
This file contains hidden or 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: Create PR staging branch | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, edited] | |
| paths: | |
| - "advisories/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| signal: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Record pull request signal | |
| env: | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| run: | | |
| mkdir -p workflow-signal | |
| printf '%s\n' "${PR_NUMBER}" > workflow-signal/pr_number.txt | |
| - name: Upload pull request signal | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: create-staging-pr-number | |
| path: workflow-signal/pr_number.txt | |
| retention-days: 1 | |
| if-no-files-found: error |