卷腹 #463
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
# replace readme | |
name: Replace README | |
on: | |
workflow_dispatch: | |
inputs: | |
test: | |
description: 'Test' | |
required: false | |
issue_comment: | |
types: [created, edited] | |
env: | |
GITHUB_NAME: chenzaichun | |
GITHUB_EMAIL: chenzaichun@gmail.com | |
jobs: | |
sync: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Configure pip cache | |
uses: actions/cache@v1 | |
id: pip-cache | |
with: | |
path: venv | |
key: pip-1-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
if: steps.pip-cache.outputs.cache-hit != 'true' | |
- name: Replace README | |
run: | | |
source venv/bin/activate | |
python main.py ${{ secrets.G_T }} ${{ github.repository }} --issue_numbe '${{ github.event.issue.number }}' --issue_label_name '${{ github.event.issue.labels[0].name }}' | |
# Fix for the unsafe repo error: https://github.com/repo-sync/pull-request/issues/84 | |
- name: Run safe dir | |
run: | | |
git config --global --add safe.directory /github/workspace | |
- name: Push new README | |
uses: chenzaichun/commit@master | |
with: | |
github-token: ${{ secrets.G_T }} | |
commit-message: "Replace README" | |
files: README.md | |
rebase: 'true' | |
name: Chen, Zai-Chun | |
email: chenzaichun@gmail.com |