Skip to content

feat: test pr workflow (wip) #31

feat: test pr workflow (wip)

feat: test pr workflow (wip) #31

Workflow file for this run

name: pr
on:
schedule:
- cron: '20 0 * * *'
push:
branches:
- main
pull_request:
branches:
- main
pull_request_review:
types:
- submitted
jobs:
build-registry:
name: 'Build Asset Registry'
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install deps
run: yarn install
# remove previous assets registry
- run: rm registry.json
# # rebuild assets registry
- run: yarn start
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated Registry Update
file_pattern: '*.json'
disable_globbing: true
auto-approve:
name: 'Auto Approve PR'
needs: build-registry
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: github.actor == 'dependabot[bot]' || github.actor == 'marshacb'
steps:
- uses: hmarr/auto-approve-action@v3
with:
review-message: 'Auto approved automated PR'
automerge:
name: 'Auto Merge PR'
runs-on: ubuntu-latest
needs: auto-approve
steps:
- id: automerge
name: auto-merge
uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"