mirror of
https://github.com/inttter/md-badges.git
synced 2026-05-06 18:36:58 +02:00
ci: 👷 GH actions : update ref-style docs on push
This commit is contained in:
parent
51a270bad1
commit
7111c55fa7
2 changed files with 24 additions and 10 deletions
19
.github/workflows/extract-refstyle-badges.yml
vendored
19
.github/workflows/extract-refstyle-badges.yml
vendored
|
|
@ -7,8 +7,23 @@ on:
|
|||
- feature/reference-style-table
|
||||
jobs:
|
||||
extract-refstyle-badges:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v5.0.0
|
||||
- name: update apt
|
||||
run: apt-get update
|
||||
- name: install gawk and git
|
||||
run: apt-get install -y gawk git
|
||||
- name: extract refstyle badges
|
||||
run: ${{github.workspace}}/.github/scripts/extract-refstyle-badges/extract-refstyle-badges.sh
|
||||
- name: display modified README in GH action logs
|
||||
run: cat ${{github.workspace}}/docs/REFERENCE_STYLE.md
|
||||
- name: commit changes
|
||||
run: |
|
||||
# Note: the following account information will not work on GHES
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git add ${{github.workspace}}/docs/REFERENCE_STYLE.md
|
||||
git commit -m "[bot] update reference-style table"
|
||||
git status
|
||||
git push
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue