-
-
Notifications
You must be signed in to change notification settings - Fork 42
46 lines (39 loc) · 1.04 KB
/
update-extension-list.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
45
46
name: " 🔗 Update Extension Lists"
on:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: "0 12 * * 0"
jobs:
update-extension-lists:
if: github.repository_owner == 'streetsidesoftware'
runs-on: ubuntu-latest
env:
NEW_BRANCH: "update-extension-lists"
steps:
- name: Start
run: |
echo "${{ toJson(github.event.inputs) }}"
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
- name: Install
run: npm install
- name: Update Workspace
run: |
npm run gen:readme
- name: Update Release Please Packages
run: |
npm run gen:release-please
- name: PR
uses: ./.github/actions/pr
with:
commit-message: "ci: Update README / Extensions List"
branch: ${{ env.NEW_BRANCH }}
app_id: ${{ secrets.AUTOMATION_APP_ID }}
app_private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}