2eee3736df
* Bump actions/github-script from 3.1.0 to 6 Bumps [actions/github-script](https://github.com/actions/github-script) from 3.1.0 to 6. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v3.1.0...v6) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update build-pull-request.yml * Update deploy-pull-request.yml * reference rest method by github.rest this broke in v5 see https://github.com/actions/github-script#breaking-changes-in-v5 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ajay Bura <32841439+ajbura@users.noreply.github.com> Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
32 lines
982 B
YAML
32 lines
982 B
YAML
name: 'Build PR'
|
|
|
|
on:
|
|
pull_request:
|
|
types: ['opened', 'synchronize']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
PR_NUMBER: ${{github.event.number}}
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
- name: Build
|
|
run: npm ci && npm run build
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2.3.1
|
|
with:
|
|
name: previewbuild
|
|
path: dist
|
|
retention-days: 1
|
|
- uses: actions/github-script@v6.0.0
|
|
with:
|
|
script: |
|
|
var fs = require('fs');
|
|
fs.writeFileSync('${{github.workspace}}/pr.json', JSON.stringify(context.payload.pull_request));
|
|
- name: Upload PR Info
|
|
uses: actions/upload-artifact@v2.3.1
|
|
with:
|
|
name: pr.json
|
|
path: pr.json
|
|
retention-days: 1
|