blob: 6bdbdcd9881b434563b33bb46aca2424bb9665cf (
plain)
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
|
name: Reorganize README
on:
push:
branches: [master]
jobs:
reorganize:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate table with `lpm`
run: |
wget https://github.com/adamharrison/lite-xl-plugin-manager/releases/download/v0.94/lpm.x86_64-linux -O lpm
chmod +x lpm
./lpm table manifest.json README.md
- name: Set environment variables
run: |
set +e # need to disable this
git diff --exit-code -s README.md
echo "has_diff=$?" >> $GITHUB_ENV
- name: create PR
if: env.has_diff == 1
uses: peter-evans/create-pull-request@v3
with:
commit-message: Reorganize README.md
branch: reorganize-ci
add-paths: README.md
delete-branch: false
title: '[CI] Reorganize README.md'
body: |
This is a CI that makes sure entries match the specified manifest.
Please check the [CI run][1] for logs.
[1]: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|