Skip to content

update html components to mui components including loading #131

update html components to mui components including loading

update html components to mui components including loading #131

Workflow file for this run

name: Add Pull Request Instructions
on:
pull_request:
types: [opened]
branches:
- 'development'
jobs:
Add-Pull-Request-Instructions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Create the message to post
- name: Create Instruction
uses: actions/github-script@v4
id: instruction
with:
script: |
const script = require('./github-actions/pr-instructions/create-instruction.js')
const instruction = script({g: github, c: context})
return JSON.stringify({ instruction: instruction, issueNum: context.payload.number })
# Create an artifact with the message
- name: Create Artifacts
run: |
mkdir -p addingPrInstructions/artifact
echo ${{ steps.instruction.outputs.result }} > addingPrInstructions/artifact/artifact.txt
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: adding-pr-instructions-artifact
path: addingPrInstructions/artifact/