-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 836 Bytes
/
dump.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
name: Check Routine Update
on:
schedule:
- cron: "0 */3 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setting Permissions
run: |
chmod +x dump.sh
chmod +x "bin/htmlq"
chmod +x "bin/url-parser"
chmod +x "bin/xidel"
shell: bash
- name: updating class routines (bi-sem)
run: ./dump.sh "update-bi"
shell: bash
# - name: updating term exam routines
# run: ./dump.sh "update-term"
# shell: bash
# - name: updating supplementary exam routines
# run: ./dump.sh "update-suppli"
# shell: bash
- name: Commit changes
run: ./dump.sh "push"
shell: bash