mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-08 20:46:16 +08:00
Sanitize input from contributor fork workflows (#2409)
Signed-off-by: Adam Vollrath <adam.d.vollrath@gmail.com>
This commit is contained in:
parent
3430e9a261
commit
e6ae3449d1
2 changed files with 20 additions and 17 deletions
2
.github/workflows/uffizzi-build.yml
vendored
2
.github/workflows/uffizzi-build.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
- name: Generate UUID image name
|
- name: Generate UUID image name
|
||||||
id: uuid
|
id: uuid
|
||||||
run: echo "UUID_TAG_APP=$(uuidgen)" >> $GITHUB_ENV
|
run: echo "UUID_TAG_APP=livebook-$(uuidgen --time)" >> $GITHUB_ENV
|
||||||
- name: Docker metadata
|
- name: Docker metadata
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v3
|
uses: docker/metadata-action@v3
|
||||||
|
|
35
.github/workflows/uffizzi-preview.yml
vendored
35
.github/workflows/uffizzi-preview.yml
vendored
|
@ -13,8 +13,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
outputs:
|
outputs:
|
||||||
compose-file-cache-key: ${{ env.COMPOSE_FILE_HASH }}
|
compose-file-cache-key: ${{ steps.hash.outputs.COMPOSE_FILE_HASH }}
|
||||||
pr-number: ${{ env.PR_NUMBER }}
|
git-ref: ${{ steps.event.outputs.GIT_REF }}
|
||||||
|
pr-number: ${{ steps.event.outputs.PR_NUMBER }}
|
||||||
|
action: ${{ steps.event.outputs.ACTION }}
|
||||||
steps:
|
steps:
|
||||||
- name: "Download artifacts"
|
- name: "Download artifacts"
|
||||||
# Fetch output (zip archive) from the workflow run that triggered this workflow.
|
# Fetch output (zip archive) from the workflow run that triggered this workflow.
|
||||||
|
@ -41,33 +43,34 @@ jobs:
|
||||||
let fs = require('fs');
|
let fs = require('fs');
|
||||||
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/preview-spec.zip`, Buffer.from(download.data));
|
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/preview-spec.zip`, Buffer.from(download.data));
|
||||||
- name: "Unzip artifact"
|
- name: "Unzip artifact"
|
||||||
run: unzip preview-spec.zip
|
run: unzip preview-spec.zip event.json
|
||||||
- name: Read Event into ENV
|
- name: Read Event into ENV
|
||||||
|
id: event
|
||||||
run: |
|
run: |
|
||||||
echo 'EVENT_JSON<<EOF' >> $GITHUB_ENV
|
echo PR_NUMBER=$(jq '.number | tonumber' < event.json) >> $GITHUB_OUTPUT
|
||||||
cat event.json >> $GITHUB_ENV
|
echo ACTION=$(jq --raw-output '.action | tostring | [scan("\\w+")][0]' < event.json) >> $GITHUB_OUTPUT
|
||||||
echo 'EOF' >> $GITHUB_ENV
|
echo GIT_REF=$(jq --raw-output '.pull_request.head.sha | tostring | [scan("\\w+")][0]' < event.json) >> $GITHUB_OUTPUT
|
||||||
- name: Hash Rendered Compose File
|
- name: Hash Rendered Compose File
|
||||||
id: hash
|
id: hash
|
||||||
# If the previous workflow was triggered by a PR close event, we will not have a compose file artifact.
|
# If the previous workflow was triggered by a PR close event, we will not have a compose file artifact.
|
||||||
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }}
|
if: ${{ steps.event.outputs.ACTION != 'closed' }}
|
||||||
run: echo "COMPOSE_FILE_HASH=$(md5sum docker-compose.rendered.yml | awk '{ print $1 }')" >> $GITHUB_ENV
|
run: |
|
||||||
|
unzip preview-spec.zip docker-compose.rendered.yml
|
||||||
|
echo "COMPOSE_FILE_HASH=$(md5sum docker-compose.rendered.yml | awk '{ print $1 }')" >> $GITHUB_OUTPUT
|
||||||
- name: Cache Rendered Compose File
|
- name: Cache Rendered Compose File
|
||||||
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }}
|
if: ${{ steps.event.outputs.ACTION != 'closed' }}
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: docker-compose.rendered.yml
|
path: docker-compose.rendered.yml
|
||||||
key: ${{ env.COMPOSE_FILE_HASH }}
|
key: ${{ steps.hash.outputs.COMPOSE_FILE_HASH }}
|
||||||
|
|
||||||
- name: Read PR Number From Event Object
|
|
||||||
id: pr
|
|
||||||
run: echo "PR_NUMBER=${{ fromJSON(env.EVENT_JSON).number }}" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: DEBUG - Print Job Outputs
|
- name: DEBUG - Print Job Outputs
|
||||||
if: ${{ runner.debug }}
|
if: ${{ runner.debug }}
|
||||||
run: |
|
run: |
|
||||||
echo "PR number: ${{ env.PR_NUMBER }}"
|
echo "PR number: ${{ steps.event.outputs.PR_NUMBER }}"
|
||||||
echo "Compose file hash: ${{ env.COMPOSE_FILE_HASH }}"
|
echo "Git Ref: ${{ steps.event.outputs.GIT_REF }}"
|
||||||
|
echo "Action: ${{ steps.event.outputs.ACTION }}"
|
||||||
|
echo "Compose file hash: ${{ steps.hash.outputs.COMPOSE_FILE_HASH }}"
|
||||||
cat event.json
|
cat event.json
|
||||||
|
|
||||||
deploy-uffizzi-preview:
|
deploy-uffizzi-preview:
|
||||||
|
|
Loading…
Add table
Reference in a new issue