-
Notifications
You must be signed in to change notification settings - Fork 5
38 lines (32 loc) · 1.13 KB
/
generate_content.yaml
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
name: Update Content
on:
# schedule:
# - cron: '0 0 * * 6' # Run every Saturday at midnight
workflow_dispatch:
jobs:
update-content:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Generate content
run: ./generate_content.sh repository_list.txt
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.PAT }}
commit-message: 'Update table of content'
committer: 'github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>'
author: '${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>'
signoff: false
branch: update-content
branch-suffix: timestamp
delete-branch: true
base: 'main'
title: 'Update table of content'
body: |
Update table of content
- Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
labels: 'update, automated-pr'