Skip to content

test

test #1

Workflow file for this run

name: test2
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Build with ncc
run: npx @vercel/ncc build index.js -o dist
- name: Create new branch and commit changes
id: create_branch
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
BRANCH_NAME=automated-build-$(date +'%Y%m%d%H%M%S')
git checkout -b $BRANCH_NAME
git add dist/index.js
git diff --quiet && git diff --staged --quiet || git commit -m "Automated build"
git push origin $BRANCH_NAME
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
title: Automated build
body: This is an automated build.
branch: ${{ env.BRANCH_NAME }}
base: master