chore: auto update browserslist shared workflow (#720)
* chore: used a shared script to update broswerslist DB * refactor: added required secrets param
This commit is contained in:
committed by
GitHub
parent
0aec952fd2
commit
63afc7d7be
41
.github/workflows/update-browserlist.yml
vendored
41
.github/workflows/update-browserlist.yml
vendored
@@ -1,41 +0,0 @@
|
||||
name: Update Browserlist DB
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 1'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-dep:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node: [16]
|
||||
npm: [8.5.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
- run: npm install -g npm@${{ matrix.npm }}
|
||||
- run: make requirements
|
||||
|
||||
- name: Update dependencies
|
||||
run: npx browserslist@latest --update-db
|
||||
|
||||
- name: setup testeng-ci
|
||||
run: |
|
||||
git clone https://github.com/edx/testeng-ci.git
|
||||
cd $GITHUB_WORKSPACE/testeng-ci
|
||||
pip install -r requirements/base.txt
|
||||
- name: create pull request
|
||||
id: createpullrequest
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.requirements_bot_github_token }}
|
||||
GITHUB_USER_EMAIL: ${{ secrets.requirements_bot_github_email }}
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/testeng-ci
|
||||
python -m jenkins.pull_request_creator --repo-root=$GITHUB_WORKSPACE \
|
||||
--target-branch="master" --base-branch-name="update-browserslist" \
|
||||
--commit-message="chore: update browserslist" --pr-title="Update browserslist DB" \
|
||||
--pr-body="Updated browserlist DB" --delete-old-pull-requests --output-pr-url-for-github-action
|
||||
12
.github/workflows/update-browserslist-db.yml
vendored
Normal file
12
.github/workflows/update-browserslist-db.yml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
name: Update Browserslist DB
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 1'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-browserslist:
|
||||
uses: openedx/.github/.github/workflows/update-browserslist-db.yml@master
|
||||
|
||||
secrets:
|
||||
requirements_bot_github_token: ${{ secrets.requirements_bot_github_token }}
|
||||
Reference in New Issue
Block a user