Skip to content

能不能不要在github上发这种东西,这里毕竟是写代码的,你要是想当做云存储,可以把 仓库类型设置为私人。我搜索时 都是你的这个东西,都找不到自己想要的东西了。Can you please not post this kind of thing on github? After all, we are writing code here. If you want to use it as cloud storage, you can set the warehouse type to private. When I searched, it was all about your stuff, but I couldn’t find what I wanted. https://cirosantilli.com/china-dictatorship/meant-to-be-used #1262

能不能不要在github上发这种东西,这里毕竟是写代码的,你要是想当做云存储,可以把 仓库类型设置为私人。我搜索时 都是你的这个东西,都找不到自己想要的东西了。Can you please not post this kind of thing on github? After all, we are writing code here. If you want to use it as cloud storage, you can set the warehouse type to private. When I searched, it was all about your stuff, but I couldn’t find what I wanted. https://cirosantilli.com/china-dictatorship/meant-to-be-used

能不能不要在github上发这种东西,这里毕竟是写代码的,你要是想当做云存储,可以把 仓库类型设置为私人。我搜索时 都是你的这个东西,都找不到自己想要的东西了。Can you please not post this kind of thing on github? After all, we are writing code here. If you want to use it as cloud storage, you can set the warehouse type to private. When I searched, it was all about your stuff, but I couldn’t find what I wanted. https://cirosantilli.com/china-dictatorship/meant-to-be-used #1262

Workflow file for this run

name: Issue
on:
issues:
types: [opened]
issue_comment:
types: [created]
jobs:
Issue:
runs-on: ubuntu-20.04
steps:
- run: echo "github.event_name ${{ github.event_name }}"
- run: echo "github.ref ${{ github.ref }}"
- run: echo "github.repository ${{ github.repository }}"
- run: echo "github.workspace ${{ github.workspace }}"
- run: echo "runner.os ${{ runner.os }}"
- run: pwd
- name: Check out repository code
uses: actions/checkout@v2
- run: npm install
- run: ls "${{ github.workspace }}"
- name: Main work
env:
GITHUB_TOKEN: ${{ github.token }}
run: "${{ github.workspace }}/action.js"
- run: echo "job.status ${{ job.status }}."