Create 04-技术播客节特别节目:请不要忽视开源中的 Burn out 问题.md (#258) #111
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: generator | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
steps: | |
- uses: actions/[email protected] | |
- name: Update archive | |
uses: linuxsuren/[email protected] | |
env: | |
GH_TOKEN: ${{ secrets.GH_SECRETS }} | |
with: | |
pattern: 'archives/*.yaml' | |
template: 'archives.tpl' | |
output: 'archives.md' | |
username: linuxsuren | |
org: opensource-f2f | |
repo: episode | |
push: false | |
- name: Update readme | |
uses: linuxsuren/[email protected] | |
env: | |
GH_TOKEN: ${{ secrets.GH_SECRETS }} | |
with: | |
pattern: 'shownotes/*.md' | |
username: linuxsuren | |
org: opensource-f2f | |
repo: episode |