-
Notifications
You must be signed in to change notification settings - Fork 20
44 lines (44 loc) · 1.39 KB
/
bumpBmyc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Bmyc bumps
on:
workflow_dispatch:
schedule:
- cron: '30 2 * * 1'
env:
NPM_CACHE_NAME: 'npm-cache'
NPM_CACHE_PATH: '~/.npm'
jobs:
Bmyc:
name: Bump thirdparties using Bmyc
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- name: Bump thirdparties and create PR
env:
LOG_FILE: 'workflow.log'
PR_TITLE: 'build: bump bmyc assets'
BRANCH_NAME: 'build/bump_bmyc_assets'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BMYC_GITHUB_TOKEN: ${{ secrets.BMYC_GITHUB_TOKEN }}
run: |
printf "%70s\n" | tr ' ' '-'
npm ci
npx bmyc --version
printf "%70s\n" | tr ' ' '-'
npx bmyc --summary-pr ${LOG_FILE}
if [[ $(git status --porcelain | wc -l) -gt 0 && -f ${LOG_FILE} ]];then
git checkout -b ${BRANCH_NAME}
git add -u .
git config --local user.name "GitHub Action"
git config --local user.email "[email protected]"
git commit -m "${PR_TITLE}"
git push -f origin ${BRANCH_NAME}
hub pull-request -f --file ${LOG_FILE} -l "internal" --base main --head ${BRANCH_NAME}
fi