Skip to content

Update issue templates #19

Update issue templates

Update issue templates #19

Workflow file for this run

name: Zipper
on:
push:
branches: ["master"]
jobs:
zip:
permissions:
contents: write # for git push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run zipper.sh to update RIC.zip
run: |
/bin/bash ./zipper.sh
if [ -n "$(git status --porcelain)" ]; then
git config --global user.name "Github Actions"
git config --global user.email "actions@github.com"
git add RIC.zip
git commit --allow-empty -m "自动更新RIC.zip"
git push
fi