Skip to content

阿黄说-原金毛狗数码 #75

阿黄说-原金毛狗数码

阿黄说-原金毛狗数码 #75

Workflow file for this run

name: Generator
on:
issues:
types: [edited, deleted, labeled, unlabeled]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Python #安装python
uses: actions/setup-python@v5
with:
python-version: 3.12.8
- name: Install requirements #安装requests
run: |
pip install -r requirements.txt
- name: Detect and Label Emails #检测订阅标签
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
GITHUB_REPOSITORY: ${{ github.repository }}
run: python friends/detect_and_label.py
- name: Update links #更新
run: |
python friends/main.py
- name: Commit & Push
uses: action-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'output'
force-push: 'true'
commit-message: 'Generate Json'
name: github-actions[bot]
email: github-actions[bot]@noreply.github.com