Skip to content

Billboard Rounds - Create PR to update latest round #17

Billboard Rounds - Create PR to update latest round

Billboard Rounds - Create PR to update latest round #17

name: Billboard Rounds - Create PR to update latest round
on: workflow_dispatch
jobs:
ci-round-assets:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '>=20'
- name: Install Dependencies
run: npm install @aws-sdk/client-s3 ## the only dependency for ./bin/sync-up-latest-round.mjs
- name: Sync up Latest Round
run: "./bin/sync-up-latest-round.mjs | tee message.log"
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ap-southeast-1
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
## token: ${{ secrets.BILLBOARD_GITHUB_TOKEN }}
commit-message: auto checkin latest Round assets as Preview
base: main
signoff: false
branch: auto/round-assets
delete-branch: true
# path: public/static
add-paths: public/static
title: check in latest round Assets
body-path: message.log
body: |
Update preview Assets
- Updated with *today's* date
- Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
labels: assets, automated pr
draft: true