-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (36 loc) · 1.07 KB
/
generate-toc.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
name: Generate Instrument Table of Contents
on:
release:
workflow_dispatch:
push:
paths:
- "gh-actions-generate-toc.py"
- ".github/workflows/generate-toc.yml"
permissions:
contents: write
jobs:
generate-instrument-toc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Pull latest changes
run: |
git fetch --prune --unshallow
git pull
- name: Prepare Python environment
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: pip install -U requests
- name: Generate Instrument Table of Contents
run: python gh-actions-generate-toc.py
id: generate-toc
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit and push changes
uses: actions4git/add-commit-push@v1
if: ${{ steps.generate-toc.outputs.continue_commit != 'false' }}
with:
commit-message: ${{ steps.generate-toc.outputs.commit_message }}