-
Notifications
You must be signed in to change notification settings - Fork 9
48 lines (44 loc) · 1.42 KB
/
standard.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
47
48
name: Process on PR
on:
push:
branches:
- master
pull_request:
jobs:
generate-xml:
runs-on: ubuntu-20.04
defaults:
run:
# The following allows for each run step to utilize ~/.bash_profile
# for setting up the per-step initial state.
# --login: a login shell. Source ~/.bash_profile
# -e: exit on first error
# -o pipefail: piped processes are important; fail if they fail
shell: bash --login -eo pipefail {0}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install dev-requirements
run: |
pip install --upgrade pip
pip install --requirement dev-requirements.txt
- name: check installed packages
run: |
pip list
- name: dump github
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- uses: ./.github/actions/validate_csv
- uses: ./.github/actions/convert_csv_to_xml
- name: push to main
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
export PRNUM=$(git log --grep="Merge pull request" --pretty=oneline -1 | sed -En "s/.*#([[:digit:]]+).*/\1/p")
git commit -am "CI/MNT: convert csv to xml from PR# $PRNUM"
ls -R XML/
git push