Update Content #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |