-
-
Notifications
You must be signed in to change notification settings - Fork 2k
33 lines (27 loc) · 815 Bytes
/
Copy pathengineering_blogs.yml
File metadata and controls
33 lines (27 loc) · 815 Bytes
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
# WorkFlow Name
name: Generate engineering_blogs.opml file
# Events upon which Github WorkFlow gets triggered
on: [push, pull_request]
# Create jobs
jobs:
generate:
name: Generate engineering_blogs.opml
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Ruby Setup
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Install pkgs
run: |
bundle install --jobs 4
- name: Generate opml file using ruby
run: |
ruby generate_opml.rb
- name: Auto-Commit engineering_blogs file if updated
uses: stefanzweifel/git-auto-commit-action@v4.1.5
with:
commit_message: Commit by Github WorkFlow
file_pattern: engineering_blogs.opml