Skip to content

Merge branch 'main' of https://github.com/bedrock-apis/vanilla-examples #13

Merge branch 'main' of https://github.com/bedrock-apis/vanilla-examples

Merge branch 'main' of https://github.com/bedrock-apis/vanilla-examples #13

Workflow file for this run

name: Pull Request Check
on:
push:
branches: [ main ]
permissions: write-all
jobs:
check:
name: Build Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: main
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Running Clean Up Code
run: |
node ./.github/generate.contents.js
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "generated"
git push