-
Notifications
You must be signed in to change notification settings - Fork 17
30 lines (24 loc) · 840 Bytes
/
Copy pathprogression.yml
File metadata and controls
30 lines (24 loc) · 840 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
# This is a basic workflow that is manually triggered
name: Progression
on:
push
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
progress_bar:
name: Modifiy repository files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2.3.2
- name: Modifiy the specific files using scripts
run: .github/scripts/generate_progress.sh
shell: bash
- name: Commit and push changes
continue-on-error: true
run: |
git config --global user.name "peterbonnesoeur"
git config --global user.email "maxime.bonn@gmail.com"
git add -A
git commit -m "Updated the progression of the challenge"
git push