Skip to content

Commit 8403c96

Browse files
committed
updater
1 parent c5fdef7 commit 8403c96

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/update.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Update module mapping
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 2 * * 4'
6+
jobs:
7+
dashboards:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Check out repo
11+
uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: Set up Ruby
15+
uses: ruby/setup-ruby@v1
16+
with:
17+
ruby-version: 3.1.2
18+
- name: Update module mappings
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
21+
run: |
22+
gem install bundler
23+
bundle install --jobs 4 --retry 3
24+
bundle exec rake update
25+
- name: Commit changes
26+
uses: EndBug/add-and-commit@v9
27+
with:
28+
add: 'data'
29+

0 commit comments

Comments
 (0)