feat: test pr workflow (wip) #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" | |